diff options
Diffstat (limited to 'testModule.c')
-rw-r--r-- | testModule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testModule.c b/testModule.c index fecc852..92e1949 100644 --- a/testModule.c +++ b/testModule.c @@ -29,6 +29,10 @@ #define MODULE_PATH ".libs" #endif +#ifndef PATH_MAX /* for The Hurd */ +#define PATH_MAX 4096 +#endif + typedef int (*hello_world_t)(void); int main(int argc ATTRIBUTE_UNUSED, char **argv ATTRIBUTE_UNUSED) { |