diff options
Diffstat (limited to 'mkpasswd.c')
-rw-r--r-- | mkpasswd.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -17,10 +17,15 @@ */ /* for crypt, snprintf and strcasecmp */ +#ifndef _XOPEN_SOURCE #define _XOPEN_SOURCE 500 +#endif +#ifndef _BSD_SOURCE #define _BSD_SOURCE 1 -#define _DEFAULT_SOURCE 1 +#endif +#ifndef __EXTENSIONS__ #define __EXTENSIONS__ 1 +#endif /* System library */ #include <stdio.h> |