diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-11-12 22:30:53 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-11-12 22:31:36 +0100 |
commit | 603ba1225fdd44a2571a1130e610c3063633c360 (patch) | |
tree | 1be3a234f59e421a065141dbc04a2289182385eb | |
parent | 83af8a5eea1d337dd438090f7c4fb6958ddf6bf5 (diff) | |
download | pjctl-603ba1225fdd44a2571a1130e610c3063633c360.tar.gz pjctl-603ba1225fdd44a2571a1130e610c3063633c360.tar.bz2 pjctl-603ba1225fdd44a2571a1130e610c3063633c360.zip |
Raise _POSIX_C_SOURCE to 200112L for snprintf
-rw-r--r-- | src/pjctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pjctl.c b/src/pjctl.c index 83d8720..94e9ab5 100644 --- a/src/pjctl.c +++ b/src/pjctl.c @@ -17,7 +17,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#define _POSIX_C_SOURCE 2 +#define _POSIX_C_SOURCE 200112L #define _GNU_SOURCE #include <stdio.h> |