Mercurial > hg > xemacs-beta
comparison lib-src/getopt1.c @ 169:15872534500d r20-3b11
Import from CVS: tag r20-3b11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:46:53 +0200 |
parents | 43dd3413c7c7 |
children | 2d532a89d707 |
comparison
equal
deleted
inserted
replaced
168:9851d5c6556e | 169:15872534500d |
---|---|
22 #ifdef HAVE_CONFIG_H | 22 #ifdef HAVE_CONFIG_H |
23 #include <config.h> | 23 #include <config.h> |
24 #endif | 24 #endif |
25 | 25 |
26 #include "getopt.h" | 26 #include "getopt.h" |
27 | |
28 #if !defined (__STDC__) || !__STDC__ | |
29 /* This is a separate conditional since some stdc systems | |
30 reject `defined (const)'. */ | |
31 #ifndef const | |
32 #define const | |
33 #endif | |
34 #endif | |
35 | 27 |
36 #include <stdio.h> | 28 #include <stdio.h> |
37 | 29 |
38 /* Comment out all this code if we are using the GNU C Library, and are not | 30 /* Comment out all this code if we are using the GNU C Library, and are not |
39 actually compiling the library itself. This code is part of the GNU C | 31 actually compiling the library itself. This code is part of the GNU C |