comparison src/config.in @ 6950:8924bd75c263

(EMACS_INT, EMACS_UINT): Omit if NOT_C_CODE.
author Karl Heuer <kwzh@gnu.org>
date Mon, 18 Apr 1994 22:40:07 +0000
parents fac59520e15f
children 661bd59bccf2
comparison
equal deleted inserted replaced
6949:319678b541eb 6950:8924bd75c263
164 164
165 See m/template.h for documentation on writing m/*.h files. */ 165 See m/template.h for documentation on writing m/*.h files. */
166 #undef config_machfile 166 #undef config_machfile
167 #include config_machfile 167 #include config_machfile
168 168
169 /* These typedefs shouldn't appear when alloca.s or Makefile.in
170 includes config.h. */
171 #ifndef NOT_C_CODE
169 #ifndef SPECIAL_EMACS_INT 172 #ifndef SPECIAL_EMACS_INT
170 typedef long EMACS_INT; 173 typedef long EMACS_INT;
171 typedef unsigned long EMACS_UINT; 174 typedef unsigned long EMACS_UINT;
175 #endif
172 #endif 176 #endif
173 177
174 /* Load in the conversion definitions if this system 178 /* Load in the conversion definitions if this system
175 needs them and the source file being compiled has not 179 needs them and the source file being compiled has not
176 said to inhibit this. There should be no need for you 180 said to inhibit this. There should be no need for you
261 265
262 /* Some of the files of Emacs which are intended for use with other 266 /* Some of the files of Emacs which are intended for use with other
263 programs assume that if you have a config.h file, you must declare 267 programs assume that if you have a config.h file, you must declare
264 the type of getenv. 268 the type of getenv.
265 269
266 This declaration shouldn't appear when alloca.s or ymakefile 270 This declaration shouldn't appear when alloca.s or Makefile.in
267 includes config.h. */ 271 includes config.h. */
268 #ifndef NOT_C_CODE 272 #ifndef NOT_C_CODE
269 extern char *getenv (); 273 extern char *getenv ();
270 #endif 274 #endif
271 275