mirror of git://sourceware.org/git/glibc.git
parent
67994d6f60
commit
d456553faf
|
|
@ -1,5 +1,7 @@
|
||||||
1999-06-23 Ulrich Drepper <drepper@cygnus.com>
|
1999-06-23 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* posix/getopt.h: Include stdio.h.
|
||||||
|
|
||||||
* manual/arith.texi: Document restriction of ndigit parameter of
|
* manual/arith.texi: Document restriction of ndigit parameter of
|
||||||
ecvt and friends.
|
ecvt and friends.
|
||||||
* misc/efgcvt.c: Define NDIGIT_MAX.
|
* misc/efgcvt.c: Define NDIGIT_MAX.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/* Declarations for getopt.
|
/* Declarations for getopt.
|
||||||
Copyright (C) 1989,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
|
Copyright (C) 1989,90,91,92,93,94,96,97,98,99 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
|
@ -23,6 +23,11 @@
|
||||||
# define _GETOPT_H 1
|
# define _GETOPT_H 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* We include this here since on system susing GNU libc we need some
|
||||||
|
macros defined. <stdio.h> is probably the most portable header
|
||||||
|
file and it does what we need. */
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue