diff options
author | KatolaZ <katolaz@freaknet.org> | 2020-10-14 11:29:58 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2020-10-14 11:29:58 +0100 |
commit | 864ec4a6c5ef86273653af4eaab9315bd1b7bbca (patch) | |
tree | 2926a4f4e51470bb97ef9d9c8b780870fa2c75c2 | |
parent | 5157bd6a0b2dcda08143fd725e1c04dadc315bdc (diff) |
fix _POSIX_C_SOURCE
-rw-r--r-- | draw.c | 2 | ||||
-rw-r--r-- | files.c | 2 | ||||
-rw-r--r-- | gramscii.c | 2 | ||||
-rw-r--r-- | gramscii.h | 2 | ||||
-rw-r--r-- | lineset.c | 2 | ||||
-rw-r--r-- | screen.c | 2 |
6 files changed, 7 insertions, 5 deletions
@@ -1,4 +1,4 @@ -#define _POSIX_C_SOURCE 2 +#define _POSIX_C_SOURCE 200112L #include <stdlib.h> #include <string.h> @@ -1,4 +1,4 @@ -#define _POSIX_C_SOURCE 2 +#define _POSIX_C_SOURCE 200112L #include <stdio.h> #include <string.h> @@ -20,7 +20,7 @@ * */ -#define _POSIX_C_SOURCE 2 +#define _POSIX_C_SOURCE 200112L #include <stdio.h> #include <stdlib.h> @@ -1,7 +1,7 @@ #ifndef __GRAMSCII_H__ #define __GRAMSCII_H__ -#define _POSIX_C_SOURCE 2 +#define _POSIX_C_SOURCE 200112L #include <stdio.h> #include <termios.h> @@ -1,3 +1,5 @@ +#define _POSIX_C_SOURCE 200112L + #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -1,4 +1,4 @@ -#define _POSIX_C_SOURCE 2 +#define _POSIX_C_SOURCE 200112L #include <stdio.h> #include <stdlib.h> |