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

This commit is contained in:
kleink 2001-05-07 08:26:13 +00:00
parent a9bf1b0410
commit cb31d8175c
1 changed files with 3 additions and 3 deletions

View File

@ -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 @@ __RCSID("$NetBSD: strtoumax.c,v 1.2 2001/05/07 02:51:59 lukem Exp $");
#include <ctype.h>
#include <errno.h>
#include <inttypes.h>
#include <stdio.h>
#include <stddef.h>
#ifdef __weak_alias
__weak_alias(strtoumax, _strtoumax)