Commit 76f6155e 76f6155e6cb989db3d863962f4f4964564ebda57 by Sergey Poznyakoff

Remove vestiges of __P(). Define _GNU_SOURCE, if not alrerady defined.

1 parent 465c1ca6
...@@ -17,14 +17,9 @@ ...@@ -17,14 +17,9 @@
17 #ifndef MUASPRINTF_H 17 #ifndef MUASPRINTF_H
18 #define MUASPRINTF_H 18 #define MUASPRINTF_H
19 19
20 #ifndef __P 20 #ifndef _GNU_SOURCE
21 # if defined PROTOTYPES || (defined __STDC__ && __STDC__) 21 # define _GNU_SOURCE
22 # define args args 22 #endif
23 # else
24 # define args) (
25 # endif
26 #endif /*__P */
27
28 #include <stdarg.h> 23 #include <stdarg.h>
29 #include <stdio.h> 24 #include <stdio.h>
30 25
......