Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5a18919

Browse files
committed
all: 1994 copyright
added config.h, config.h.in moved parser.h to ../Parser, patchlevel.h to ../Python allobjects.h: include config.h some: remove all refs to THINK_C_3_0 mymalloc.h: di HAVE_STDLIB differently, use size_t instead of MALLARG
1 parent fbee23e commit 5a18919

1 file changed

Lines changed: 82 additions & 0 deletions

File tree

Include/config.h

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/* Include/config.h. Generated automatically by configure. */
2+
/* NOTE: config.h.in is converted into config.h by the configure
3+
script in the toplevel directory.
4+
5+
On non-UNIX systems, manually copy config.h.in to config.h, and
6+
edit the latter to reflect the actual configuration of your system.
7+
8+
Then arrange that the symbol HAVE_CONFIG_H is defined during
9+
compilation (usually by passing an argument of the form
10+
`-DHAVE_CONFIG_H' to the compiler, but this is necessarily
11+
system-dependent). */
12+
13+
14+
/* Types which have no traditional name -- edit the definition if necessary */
15+
16+
#define RETSIGTYPE void /* int or void: return of signal handlers */
17+
18+
19+
/* Types which are often defined in <sys/types.h> -- either define as
20+
some variant of int or leave undefined. Uncomment a definition if
21+
your <sys/types.h> does not define the type */
22+
23+
/* #define mode_t int */
24+
/* #define off_t long */
25+
/* #define pid_t int */
26+
/* #define size_t unsigned */
27+
/* #define uid_t int */
28+
/* #define gid_t int */
29+
30+
31+
/* Feature test symbols -- either define as 1 or leave undefined */
32+
33+
/* symbol name: #define as 1 if: */
34+
35+
/* #undef STDC_HEADERS */ /* the standard C header files exist
36+
(in particular, <stdlib.h>,
37+
<stdarg.h>, <string.h> and <float.h>) */
38+
39+
/* #undef HAVE_DLFCN_H */ /* <dlfcn.h> exists */
40+
#define HAVE_SIGNAL_H 1 /* <signal.h> exists */
41+
#define HAVE_STDARG_H 1 /* <stdarg.h> exists (else need <varargs.h>) */
42+
#define HAVE_STDLIB_H 1 /* <stdlib.h> exists */
43+
#define HAVE_UNISTD_H 1 /* <unistd.h> exists */
44+
#define HAVE_UTIME_H 1 /* <utime.h> exists */
45+
46+
#define HAVE_SYS_PARAM_H 1 /* <sys/param.h> exists */
47+
/* #undef HAVE_SYS_SELECT_H */ /* <sys/select.h> exists */
48+
#define HAVE_SYS_TIMES_H 1 /* <sys/times.h> exists */
49+
/* #undef HAVE_SYS_TIME_H */ /* <sys/time.h> exists */
50+
#define HAVE_SYS_UTSNAME_H 1 /* <sys.utsname.h> exists */
51+
52+
#define TIME_WITH_SYS_TIME 1 /* <sys/time.h> and <time.h> can be included
53+
together */
54+
55+
/* #undef HAVE_TM_ZONE */ /* struct tm has a tm_zone member */
56+
#define HAVE_TZNAME 1 /* extern char *tzname[] exists */
57+
58+
#define HAVE_CLOCK 1 /* clock() exists */
59+
/* #undef HAVE_FTIME */ /* ftime() exists */
60+
#define HAVE_GETPGRP 1 /* getpgrp() exists */
61+
#define HAVE_GETTIMEOFDAY 1 /* gettimeofday() exists */
62+
#define HAVE_LSTAT 1 /* lstat() exists */
63+
#define HAVE_PROTOTYPES 1 /* the compiler understands prototypes */
64+
#define HAVE_READLINK 1 /* readlink() exists */
65+
#define HAVE_SELECT 1 /* select() exists */
66+
#define HAVE_SETPGID 1 /* setpgid() exists */
67+
#define HAVE_SETPGRP 1 /* setpgrp() exists */
68+
#define HAVE_SETSID 1 /* setsid() exists */
69+
#define HAVE_SYMLINK 1 /* symlink() exists */
70+
/* #undef HAVE_SIGINTERRUPT */ /* siginterrupt() exists */
71+
#define HAVE_TCGETPGRP 1 /* tcgetpgrp() exists */
72+
#define HAVE_TCSETPGRP 1 /* tcsetpgrp() exists */
73+
#define HAVE_TIMES 1 /* times() exists */
74+
#define HAVE_UNAME 1 /* uname() exists */
75+
#define HAVE_WAITPID 1 /* waitpid() exists */
76+
77+
/* #undef GETPGRP_HAVE_ARG */ /* getpgrp() must be called as getpgrp(0)
78+
(and setpgrp() as setpgrp(0, 0)) */
79+
80+
#define WITH_READLINE 1 /* GNU readline() should be used */
81+
/* #undef USE_THREAD */ /* Build in thread support */
82+
/* #undef SOLARIS */ /* This is SOLARIS 2.x */

0 commit comments

Comments
 (0)