| 62 | #endif |
| 63 | |
| 64 | void poptSetExecPath(poptContext con, const char * path, int allowAbsolute) |
| 65 | { |
| 66 | con->execPath = _free(con->execPath); |
| 67 | con->execPath = xstrdup(path); |
| 68 | con->execAbsolute = allowAbsolute; |
| 69 | return; |
| 70 | } |
| 71 | |
| 72 | static void invokeCallbacksPRE(poptContext con, const struct poptOption * opt) |
| 73 | { |