Changeset 153 for branches/GNU/src/gmake/make.h
- Timestamp:
- Sep 8, 2004, 4:43:30 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gmake/make.h
r54 r153 211 211 # endif 212 212 #endif 213 #define UNUSED __attribute__ ((unused)) 213 214 214 215 #if defined (STDC_HEADERS) || defined (__GNU_LIBRARY__) … … 388 389 389 390 390 /* Fancy processing for variadic functions in both ANSI and pre-ANSI 391 compilers. */ 392 #if defined __STDC__ && __STDC__ 391 /* We have to have stdarg.h or varargs.h AND v*printf or doprnt to use 392 variadic versions of these functions. */ 393 394 #if HAVE_STDARG_H || HAVE_VARARGS_H 395 # if HAVE_VPRINTF || HAVE_DOPRNT 396 # define USE_VARIADIC 1 397 # endif 398 #endif 399 400 #if HAVE_ANSI_COMPILER && USE_VARIADIC && HAVE_STDARG_H 393 401 extern void message (int prefix, const char *fmt, ...) 394 402 __attribute__ ((__format__ (__printf__, 2, 3))); … … 448 456 extern void construct_vpath_list PARAMS ((char *pattern, char *dirpath)); 449 457 extern int vpath_search PARAMS ((char **file, FILE_TIMESTAMP *mtime_ptr)); 450 extern int gpath_search PARAMS ((char *file, int len));458 extern int gpath_search PARAMS ((char *file, unsigned int len)); 451 459 452 460 extern void construct_include_path PARAMS ((char **arg_dirs));
Note:
See TracChangeset
for help on using the changeset viewer.