Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Dec 2015 04:24:15 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r292150 - stable/10/lib/libc/stdio
Message-ID:  <201512130424.tBD4OFJ6086799@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sun Dec 13 04:24:15 2015
New Revision: 292150
URL: https://svnweb.freebsd.org/changeset/base/292150

Log:
  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/10/lib/libc/stdio/open_memstream.c
  stable/10/lib/libc/stdio/open_wmemstream.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/lib/libc/stdio/open_memstream.c
==============================================================================
--- stable/10/lib/libc/stdio/open_memstream.c	Sun Dec 13 04:22:50 2015	(r292149)
+++ stable/10/lib/libc/stdio/open_memstream.c	Sun Dec 13 04:24:15 2015	(r292150)
@@ -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/10/lib/libc/stdio/open_wmemstream.c
==============================================================================
--- stable/10/lib/libc/stdio/open_wmemstream.c	Sun Dec 13 04:22:50 2015	(r292149)
+++ stable/10/lib/libc/stdio/open_wmemstream.c	Sun Dec 13 04:24:15 2015	(r292150)
@@ -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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512130424.tBD4OFJ6086799>