Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libc/stdlib Use <stddef.h> rather than <stdio.h> if it's...



details:   https://anonhg.NetBSD.org/src/rev/a4b88f61b7f6
branches:  trunk
changeset: 509554:a4b88f61b7f6
user:      kleink <kleink%NetBSD.org@localhost>
date:      Mon May 07 08:26:13 2001 +0000

description:
Use <stddef.h> rather than <stdio.h> if it's just NULL that's wanted.

diffstat:

 lib/libc/stdlib/strtoumax.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1efa0c664886 -r a4b88f61b7f6 lib/libc/stdlib/strtoumax.c
--- a/lib/libc/stdlib/strtoumax.c       Mon May 07 08:15:41 2001 +0000
+++ b/lib/libc/stdlib/strtoumax.c       Mon May 07 08:26:13 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: strtoumax.c,v 1.2 2001/05/07 02:51:59 lukem Exp $      */
+/*     $NetBSD: strtoumax.c,v 1.3 2001/05/07 08:26:13 kleink Exp $     */
 
 /*
  * Copyright (c) 1990, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "from: @(#)strtoul.c    8.1 (Berkeley) 6/4/93";
 #else
-__RCSID("$NetBSD: strtoumax.c,v 1.2 2001/05/07 02:51:59 lukem Exp $");
+__RCSID("$NetBSD: strtoumax.c,v 1.3 2001/05/07 08:26:13 kleink Exp $");
 #endif
 #endif /* LIBC_SCCS and not lint */
 
@@ -47,7 +47,7 @@
 #include <ctype.h>
 #include <errno.h>
 #include <inttypes.h>
-#include <stdio.h>
+#include <stddef.h>
 
 #ifdef __weak_alias
 __weak_alias(strtoumax, _strtoumax)



Home | Main Index | Thread Index | Old Index