svn commit: r292151 - stable/9/lib/libc/stdio
Garrett Cooper
ngie at FreeBSD.org
Sun Dec 13 04:25:01 UTC 2015
Author: ngie
Date: Sun Dec 13 04:24:59 2015
New Revision: 292151
URL: https://svnweb.freebsd.org/changeset/base/292151
Log:
MFstable/10 r292150:
MFC r292013:
Use stdint.h instead of inttypes.h as the latter pollutes namespace more
Submitted by: bde
Sponsored by: EMC / Isilon Storage Division
Modified:
stable/9/lib/libc/stdio/open_memstream.c
stable/9/lib/libc/stdio/open_wmemstream.c
Directory Properties:
stable/9/ (props changed)
stable/9/lib/ (props changed)
stable/9/lib/libc/ (props changed)
Modified: stable/9/lib/libc/stdio/open_memstream.c
==============================================================================
--- stable/9/lib/libc/stdio/open_memstream.c Sun Dec 13 04:24:15 2015 (r292150)
+++ stable/9/lib/libc/stdio/open_memstream.c Sun Dec 13 04:24:59 2015 (r292151)
@@ -31,10 +31,10 @@ __FBSDID("$FreeBSD$");
#include "namespace.h"
#include <assert.h>
#include <errno.h>
+#include <limits.h>
#ifdef DEBUG
-#include <inttypes.h>
+#include <stdint.h>
#endif
-#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Modified: stable/9/lib/libc/stdio/open_wmemstream.c
==============================================================================
--- stable/9/lib/libc/stdio/open_wmemstream.c Sun Dec 13 04:24:15 2015 (r292150)
+++ stable/9/lib/libc/stdio/open_wmemstream.c Sun Dec 13 04:24:59 2015 (r292151)
@@ -31,10 +31,10 @@ __FBSDID("$FreeBSD$");
#include "namespace.h"
#include <assert.h>
#include <errno.h>
+#include <limits.h>
#ifdef DEBUG
-#include <inttypes.h>
+#include <stdint.h>
#endif
-#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
More information about the svn-src-stable-9
mailing list