source: trunk/src/kmk/make.h@ 1834

Last change on this file since 1834 was 1834, checked in by bird, 17 years ago

kmk: assertions.

  • Property svn:eol-style set to native
File size: 20.4 KB
Line 
1/* Miscellaneous global declarations and portability cruft for GNU Make.
2Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
31998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software
4Foundation, Inc.
5This file is part of GNU Make.
6
7GNU Make is free software; you can redistribute it and/or modify it under the
8terms of the GNU General Public License as published by the Free Software
9Foundation; either version 2, or (at your option) any later version.
10
11GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License along with
16GNU Make; see the file COPYING. If not, write to the Free Software
17Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */
18
19/* We use <config.h> instead of "config.h" so that a compilation
20 using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
21 (which it would do because make.h was found in $srcdir). */
22#include <config.h>
23#undef HAVE_CONFIG_H
24#define HAVE_CONFIG_H 1
25
26/* AIX requires this to be the first thing in the file. */
27#ifndef __GNUC__
28# if HAVE_ALLOCA_H
29# include <alloca.h>
30# else
31# ifdef _AIX
32 #pragma alloca
33# else
34# ifndef alloca /* predefined by HP cc +Olibcalls */
35char *alloca ();
36# endif
37# endif
38# endif
39#endif
40
41
42/* Specify we want GNU source code. This must be defined before any
43 system headers are included. */
44
45#define _GNU_SOURCE 1
46
47
48#ifdef CRAY
49/* This must happen before #include <signal.h> so
50 that the declaration therein is changed. */
51# define signal bsdsignal
52#endif
53
54/* If we're compiling for the dmalloc debugger, turn off string inlining. */
55#if defined(HAVE_DMALLOC_H) && defined(__GNUC__)
56# define __NO_STRING_INLINES
57#endif
58
59#include <sys/types.h>
60#include <sys/stat.h>
61#include <signal.h>
62#include <stdio.h>
63#include <ctype.h>
64#ifdef HAVE_SYS_TIMEB_H
65/* SCO 3.2 "devsys 4.2" has a prototype for `ftime' in <time.h> that bombs
66 unless <sys/timeb.h> has been included first. Does every system have a
67 <sys/timeb.h>? If any does not, configure should check for it. */
68# include <sys/timeb.h>
69#endif
70
71#if TIME_WITH_SYS_TIME
72# include <sys/time.h>
73# include <time.h>
74#else
75# if HAVE_SYS_TIME_H
76# include <sys/time.h>
77# else
78# include <time.h>
79# endif
80#endif
81
82#include <errno.h>
83
84#ifndef errno
85extern int errno;
86#endif
87
88#ifndef isblank
89# define isblank(c) ((c) == ' ' || (c) == '\t')
90#endif
91
92#ifdef HAVE_UNISTD_H
93# include <unistd.h>
94/* Ultrix's unistd.h always defines _POSIX_VERSION, but you only get
95 POSIX.1 behavior with `cc -YPOSIX', which predefines POSIX itself! */
96# if defined (_POSIX_VERSION) && !defined (ultrix) && !defined (VMS)
97# define POSIX 1
98# endif
99#endif
100
101/* Some systems define _POSIX_VERSION but are not really POSIX.1. */
102#if (defined (butterfly) || defined (__arm) || (defined (__mips) && defined (_SYSTYPE_SVR3)) || (defined (sequent) && defined (i386)))
103# undef POSIX
104#endif
105
106#if !defined (POSIX) && defined (_AIX) && defined (_POSIX_SOURCE)
107# define POSIX 1
108#endif
109
110#ifndef RETSIGTYPE
111# define RETSIGTYPE void
112#endif
113
114#ifndef sigmask
115# define sigmask(sig) (1 << ((sig) - 1))
116#endif
117
118#ifndef HAVE_SA_RESTART
119# define SA_RESTART 0
120#endif
121
122#ifdef HAVE_LIMITS_H
123# include <limits.h>
124#endif
125#ifdef HAVE_SYS_PARAM_H
126# include <sys/param.h>
127#endif
128
129#ifndef PATH_MAX
130# ifndef POSIX
131# define PATH_MAX MAXPATHLEN
132# endif
133#endif
134#ifndef MAXPATHLEN
135# define MAXPATHLEN 1024
136#endif
137
138#ifdef PATH_MAX
139# define GET_PATH_MAX PATH_MAX
140# define PATH_VAR(var) char var[PATH_MAX]
141#else
142# define NEED_GET_PATH_MAX 1
143# define GET_PATH_MAX (get_path_max ())
144# define PATH_VAR(var) char *var = alloca (GET_PATH_MAX)
145unsigned int get_path_max (void);
146#endif
147
148#ifndef CHAR_BIT
149# define CHAR_BIT 8
150#endif
151
152#ifdef KMK
153# ifdef _MSC_VER
154# define MY_INLINE _inline static
155# elif defined(__GNUC__)
156# define MY_INLINE static __inline__
157# else
158# define MY_INLINE static
159# endif
160#endif /* KMK */
161#if defined(CONFIG_WITH_VALUE_LENGTH) || defined(KMK)
162# ifndef NDEBUG
163# define MY_ASSERT_MSG(expr, printfargs) \
164 do { if (!(expr)) { printf printfargs; assert(expr); } } while (0)
165# else
166# define MY_ASSERT_MSG(expr, printfargs) do { } while (0)
167# endif
168#endif
169
170/* Nonzero if the integer type T is signed. */
171#define INTEGER_TYPE_SIGNED(t) ((t) -1 < 0)
172
173/* The minimum and maximum values for the integer type T.
174 Use ~ (t) 0, not -1, for portability to 1's complement hosts. */
175#define INTEGER_TYPE_MINIMUM(t) \
176 (! INTEGER_TYPE_SIGNED (t) ? (t) 0 : ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1))
177#define INTEGER_TYPE_MAXIMUM(t) (~ (t) 0 - INTEGER_TYPE_MINIMUM (t))
178
179#ifndef CHAR_MAX
180# define CHAR_MAX INTEGER_TYPE_MAXIMUM (char)
181#endif
182
183#ifdef STAT_MACROS_BROKEN
184# ifdef S_ISREG
185# undef S_ISREG
186# endif
187# ifdef S_ISDIR
188# undef S_ISDIR
189# endif
190#endif /* STAT_MACROS_BROKEN. */
191
192#ifndef S_ISREG
193# define S_ISREG(mode) (((mode) & S_IFMT) == S_IFREG)
194#endif
195#ifndef S_ISDIR
196# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
197#endif
198
199#ifdef VMS
200# include <types.h>
201# include <unixlib.h>
202# include <unixio.h>
203# include <perror.h>
204/* Needed to use alloca on VMS. */
205# include <builtins.h>
206#endif
207
208#ifndef __attribute__
209/* This feature is available in gcc versions 2.5 and later. */
210# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__
211# define __attribute__(x)
212# endif
213/* The __-protected variants of `format' and `printf' attributes
214 are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */
215# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7)
216# define __format__ format
217# define __printf__ printf
218# endif
219#endif
220#define UNUSED __attribute__ ((unused))
221
222#if defined (STDC_HEADERS) || defined (__GNU_LIBRARY__)
223# include <stdlib.h>
224# include <string.h>
225# define ANSI_STRING 1
226#else /* No standard headers. */
227# ifdef HAVE_STRING_H
228# include <string.h>
229# define ANSI_STRING 1
230# else
231# include <strings.h>
232# endif
233# ifdef HAVE_MEMORY_H
234# include <memory.h>
235# endif
236# ifdef HAVE_STDLIB_H
237# include <stdlib.h>
238# else
239void *malloc (int);
240void *realloc (void *, int);
241void free (void *);
242
243void abort (void) __attribute__ ((noreturn));
244void exit (int) __attribute__ ((noreturn));
245# endif /* HAVE_STDLIB_H. */
246
247#endif /* Standard headers. */
248
249/* These should be in stdlib.h. Make sure we have them. */
250#ifndef EXIT_SUCCESS
251# define EXIT_SUCCESS 0
252#endif
253#ifndef EXIT_FAILURE
254# define EXIT_FAILURE 1
255#endif
256
257#ifndef ANSI_STRING
258
259/* SCO Xenix has a buggy macro definition in <string.h>. */
260#undef strerror
261#if !defined(__DECC)
262char *strerror (int errnum);
263#endif
264
265#endif /* !ANSI_STRING. */
266#undef ANSI_STRING
267
268#if HAVE_INTTYPES_H
269# include <inttypes.h>
270#endif
271#define FILE_TIMESTAMP uintmax_t
272
273#if !defined(HAVE_STRSIGNAL)
274char *strsignal (int signum);
275#endif
276
277/* ISDIGIT offers the following features:
278 - Its arg may be any int or unsigned int; it need not be an unsigned char.
279 - It's guaranteed to evaluate its argument exactly once.
280 NOTE! Make relies on this behavior, don't change it!
281 - It's typically faster.
282 POSIX 1003.2-1992 section 2.5.2.1 page 50 lines 1556-1558 says that
283 only '0' through '9' are digits. Prefer ISDIGIT to isdigit() unless
284 it's important to use the locale's definition of `digit' even when the
285 host does not conform to POSIX. */
286#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
287
288#ifndef iAPX286
289# define streq(a, b) \
290 ((a) == (b) || \
291 (*(a) == *(b) && (*(a) == '\0' || !strcmp ((a) + 1, (b) + 1))))
292# ifdef HAVE_CASE_INSENSITIVE_FS
293# define strieq(a, b) \
294 ((a) == (b) \
295 || (tolower((unsigned char)*(a)) == tolower((unsigned char)*(b)) \
296 && (*(a) == '\0' || !strcasecmp ((a) + 1, (b) + 1))))
297# else
298# define strieq(a, b) streq(a, b)
299# endif
300#else
301/* Buggy compiler can't handle this. */
302# define streq(a, b) (strcmp ((a), (b)) == 0)
303# define strieq(a, b) (strcmp ((a), (b)) == 0)
304#endif
305#define strneq(a, b, l) (strncmp ((a), (b), (l)) == 0)
306
307#if (defined(__GNUC__) || defined(ENUM_BITFIELDS)) && !defined(NO_ENUM_BITFIELDS)
308# define ENUM_BITFIELD(bits) :bits
309#else
310# define ENUM_BITFIELD(bits)
311#endif
312
313/* Handle gettext and locales. */
314
315#if HAVE_LOCALE_H
316# include <locale.h>
317#else
318# define setlocale(category, locale)
319#endif
320
321#include <gettext.h>
322
323#define _(msgid) gettext (msgid)
324#define N_(msgid) gettext_noop (msgid)
325#define S_(msg1,msg2,num) ngettext (msg1,msg2,num)
326
327/* Handle other OSs. */
328#ifndef PATH_SEPARATOR_CHAR
329# if defined(HAVE_DOS_PATHS)
330# define PATH_SEPARATOR_CHAR ';'
331# elif defined(VMS)
332# define PATH_SEPARATOR_CHAR ','
333# else
334# define PATH_SEPARATOR_CHAR ':'
335# endif
336#endif
337
338/* This is needed for getcwd() and chdir(), on some W32 systems. */
339#if defined(HAVE_DIRECT_H)
340# include <direct.h>
341#endif
342
343#ifdef WINDOWS32
344# include <fcntl.h>
345# include <malloc.h>
346# define pipe(_p) _pipe((_p), 512, O_BINARY)
347# define kill(_pid,_sig) w32_kill((_pid),(_sig))
348
349void sync_Path_environment (void);
350int w32_kill (int pid, int sig); /* bird kill -> w32_kill - macro acquired () on the args. */
351char *end_of_token_w32 (const char *s, char stopchar);
352int find_and_set_default_shell (const char *token);
353
354/* indicates whether or not we have Bourne shell */
355extern int no_default_sh_exe;
356
357/* is default_shell unixy? */
358extern int unixy_shell;
359#endif /* WINDOWS32 */
360
361struct floc
362 {
363 const char *filenm;
364 unsigned long lineno;
365 };
366#define NILF ((struct floc *)0)
367
368#define STRING_SIZE_TUPLE(_s) (_s), (sizeof (_s)-1)
369
370
371
372/* We have to have stdarg.h or varargs.h AND v*printf or doprnt to use
373 variadic versions of these functions. */
374
375#if HAVE_STDARG_H || HAVE_VARARGS_H
376# if HAVE_VPRINTF || HAVE_DOPRNT
377# define USE_VARIADIC 1
378# endif
379#endif
380
381#if HAVE_ANSI_COMPILER && USE_VARIADIC && HAVE_STDARG_H
382void message (int prefix, const char *fmt, ...)
383 __attribute__ ((__format__ (__printf__, 2, 3)));
384void error (const struct floc *flocp, const char *fmt, ...)
385 __attribute__ ((__format__ (__printf__, 2, 3)));
386void fatal (const struct floc *flocp, const char *fmt, ...)
387 __attribute__ ((noreturn, __format__ (__printf__, 2, 3)));
388#else
389void message ();
390void error ();
391void fatal ();
392#endif
393
394void die (int) __attribute__ ((noreturn));
395void log_working_directory (int);
396void pfatal_with_name (const char *) __attribute__ ((noreturn));
397void perror_with_name (const char *, const char *);
398char *savestring (const char *, unsigned int);
399char *concat (const char *, const char *, const char *);
400void *xmalloc (unsigned int);
401void *xrealloc (void *, unsigned int);
402char *xstrdup (const char *);
403char *find_next_token (const char **, unsigned int *);
404char *next_token (const char *);
405char *end_of_token (const char *);
406#ifndef CONFIG_WITH_VALUE_LENGTH
407void collapse_continuations (char *);
408#else
409char *collapse_continuations (char *, unsigned int);
410#endif
411#ifdef CONFIG_WITH_OPTIMIZATION_HACKS /* memchr is usually compiler intrinsic, thus faster. */
412# define lindex(s, limit, c) ((char *)memchr((s), (c), (limit) - (s)))
413#else
414char *lindex (const char *, const char *, int);
415#endif
416int alpha_compare (const void *, const void *);
417void print_spaces (unsigned int);
418char *find_percent (char *);
419const char *find_percent_cached (const char **);
420FILE *open_tmpfile (char **, const char *);
421
422#ifndef NO_ARCHIVES
423int ar_name (const char *);
424void ar_parse_name (const char *, char **, char **);
425int ar_touch (const char *);
426time_t ar_member_date (const char *);
427
428typedef long int (*ar_member_func_t) (int desc, const char *mem, int truncated,
429 long int hdrpos, long int datapos,
430 long int size, long int date, int uid,
431 int gid, int mode, const void *arg);
432
433long int ar_scan (const char *archive, ar_member_func_t function, const void *arg);
434int ar_name_equal (const char *name, const char *mem, int truncated);
435#ifndef VMS
436int ar_member_touch (const char *arname, const char *memname);
437#endif
438#endif
439
440int dir_file_exists_p (const char *, const char *);
441int file_exists_p (const char *);
442int file_impossible_p (const char *);
443void file_impossible (const char *);
444const char *dir_name (const char *);
445void hash_init_directories (void);
446
447void define_default_variables (void);
448void set_default_suffixes (void);
449void install_default_suffix_rules (void);
450void install_default_implicit_rules (void);
451
452void build_vpath_lists (void);
453void construct_vpath_list (char *pattern, char *dirpath);
454const char *vpath_search (const char *file, FILE_TIMESTAMP *mtime_ptr);
455int gpath_search (const char *file, unsigned int len);
456
457void construct_include_path (const char **arg_dirs);
458
459void user_access (void);
460void make_access (void);
461void child_access (void);
462
463void close_stdout (void);
464
465char *strip_whitespace (const char **begpp, const char **endpp);
466
467/* String caching */
468void strcache_init (void);
469void strcache_print_stats (const char *prefix);
470int strcache_iscached (const char *str);
471const char *strcache_add (const char *str);
472const char *strcache_add_len (const char *str, int len);
473int strcache_setbufsize (int size);
474
475#ifdef HAVE_VFORK_H
476# include <vfork.h>
477#endif
478
479/* We omit these declarations on non-POSIX systems which define _POSIX_VERSION,
480 because such systems often declare them in header files anyway. */
481
482#if !defined (__GNU_LIBRARY__) && !defined (POSIX) && !defined (_POSIX_VERSION) && !defined(WINDOWS32)
483
484long int atol ();
485# ifndef VMS
486long int lseek ();
487# endif
488
489#endif /* Not GNU C library or POSIX. */
490
491#ifdef HAVE_GETCWD
492# if !defined(VMS) && !defined(__DECC) && !defined(_MSC_VER) /* bird: MSC */
493char *getcwd ();
494# endif
495#else
496char *getwd ();
497# define getcwd(buf, len) getwd (buf)
498#endif
499
500#if !HAVE_STRCASECMP
501# if HAVE_STRICMP
502# define strcasecmp stricmp
503# elif HAVE_STRCMPI
504# define strcasecmp strcmpi
505# else
506/* Create our own, in misc.c */
507int strcasecmp (const char *s1, const char *s2);
508# endif
509#endif
510
511extern const struct floc *reading_file;
512extern const struct floc **expanding_var;
513
514#if !defined(_MSC_VER) /* bird */
515extern char **environ;
516#endif
517
518extern int just_print_flag, silent_flag, ignore_errors_flag, keep_going_flag;
519extern int print_data_base_flag, question_flag, touch_flag, always_make_flag;
520extern int env_overrides, no_builtin_rules_flag, no_builtin_variables_flag;
521extern int print_version_flag, print_directory_flag, check_symlink_flag;
522extern int warn_undefined_variables_flag, posix_pedantic, not_parallel;
523extern int second_expansion, clock_skew_detected, rebuilding_makefiles;
524#ifdef CONFIG_WITH_2ND_TARGET_EXPANSION
525extern int second_target_expansion;
526#endif
527#ifdef CONFIG_PRETTY_COMMAND_PRINTING
528extern int pretty_command_printing;
529#endif
530#ifdef CONFIG_WITH_MAKE_STATS
531extern int make_expensive_statistics;
532#endif
533
534
535/* can we run commands via 'sh -c xxx' or must we use batch files? */
536extern int batch_mode_shell;
537
538extern char cmd_prefix;
539
540extern unsigned int job_slots;
541extern int job_fds[2];
542extern int job_rfd;
543#ifndef NO_FLOAT
544extern double max_load_average;
545#else
546extern int max_load_average;
547#endif
548
549extern char *program;
550extern char *starting_directory;
551extern unsigned int makelevel;
552extern char *version_string, *remote_description, *make_host;
553
554extern unsigned int commands_started;
555
556extern int handling_fatal_signal;
557
558
559#ifndef MIN
560#define MIN(_a,_b) ((_a)<(_b)?(_a):(_b))
561#endif
562#ifndef MAX
563#define MAX(_a,_b) ((_a)>(_b)?(_a):(_b))
564#endif
565
566#ifdef VMS
567# define MAKE_SUCCESS 1
568# define MAKE_TROUBLE 2
569# define MAKE_FAILURE 3
570#else
571# define MAKE_SUCCESS 0
572# define MAKE_TROUBLE 1
573# define MAKE_FAILURE 2
574#endif
575
576/* Set up heap debugging library dmalloc. */
577
578#ifdef HAVE_DMALLOC_H
579#include <dmalloc.h>
580#endif
581
582#ifndef initialize_main
583# ifdef __EMX__
584# define initialize_main(pargc, pargv) \
585 { _wildcard(pargc, pargv); _response(pargc, pargv); }
586# else
587# define initialize_main(pargc, pargv)
588# endif
589#endif
590
591#ifdef __EMX__
592# if !defined chdir
593# define chdir _chdir2
594# endif
595# if !defined getcwd
596# define getcwd _getcwd2
597# endif
598
599/* NO_CHDIR2 causes make not to use _chdir2() and _getcwd2() instead of
600 chdir() and getcwd(). This avoids some error messages for the
601 make testsuite but restricts the drive letter support. */
602# ifdef NO_CHDIR2
603# warning NO_CHDIR2: usage of drive letters restricted
604# undef chdir
605# undef getcwd
606# endif
607#endif
608
609#ifndef initialize_main
610# define initialize_main(pargc, pargv)
611#endif
612
613
614/* Some systems (like Solaris, PTX, etc.) do not support the SA_RESTART flag
615 properly according to POSIX. So, we try to wrap common system calls with
616 checks for EINTR. Note that there are still plenty of system calls that
617 can fail with EINTR but this, reportedly, gets the vast majority of
618 failure cases. If you still experience failures you'll need to either get
619 a system where SA_RESTART works, or you need to avoid -j. */
620
621#define EINTRLOOP(_v,_c) while (((_v)=_c)==-1 && errno==EINTR)
622
623/* While system calls that return integers are pretty consistent about
624 returning -1 on failure and setting errno in that case, functions that
625 return pointers are not always so well behaved. Sometimes they return
626 NULL for expected behavior: one good example is readdir() which returns
627 NULL at the end of the directory--and _doesn't_ reset errno. So, we have
628 to do it ourselves here. */
629
630#define ENULLLOOP(_v,_c) do { errno = 0; (_v) = _c; } \
631 while((_v)==0 && errno==EINTR)
632
633
634#if defined(__EMX__) && defined(CONFIG_WITH_OPTIMIZATION_HACKS) /* bird: saves 40-100ms on libc. */
635static inline void *__my_rawmemchr (const void *__s, int __c);
636#undef strchr
637#define strchr(s, c) \
638 (__extension__ (__builtin_constant_p (c) \
639 ? ((c) == '\0' \
640 ? (char *) __my_rawmemchr ((s), (c)) \
641 : __my_strchr_c ((s), ((c) & 0xff) << 8)) \
642 : __my_strchr_g ((s), (c))))
643static inline char *__my_strchr_c (const char *__s, int __c)
644{
645 register unsigned long int __d0;
646 register char *__res;
647 __asm__ __volatile__
648 ("1:\n\t"
649 "movb (%0),%%al\n\t"
650 "cmpb %%ah,%%al\n\t"
651 "je 2f\n\t"
652 "leal 1(%0),%0\n\t"
653 "testb %%al,%%al\n\t"
654 "jne 1b\n\t"
655 "xorl %0,%0\n"
656 "2:"
657 : "=r" (__res), "=&a" (__d0)
658 : "0" (__s), "1" (__c),
659 "m" ( *(struct { char __x[0xfffffff]; } *)__s)
660 : "cc");
661 return __res;
662}
663
664static inline char *__my_strchr_g (__const char *__s, int __c)
665{
666 register unsigned long int __d0;
667 register char *__res;
668 __asm__ __volatile__
669 ("movb %%al,%%ah\n"
670 "1:\n\t"
671 "movb (%0),%%al\n\t"
672 "cmpb %%ah,%%al\n\t"
673 "je 2f\n\t"
674 "leal 1(%0),%0\n\t"
675 "testb %%al,%%al\n\t"
676 "jne 1b\n\t"
677 "xorl %0,%0\n"
678 "2:"
679 : "=r" (__res), "=&a" (__d0)
680 : "0" (__s), "1" (__c),
681 "m" ( *(struct { char __x[0xfffffff]; } *)__s)
682 : "cc");
683 return __res;
684}
685
686static inline void *__my_rawmemchr (const void *__s, int __c)
687{
688 register unsigned long int __d0;
689 register unsigned char *__res;
690 __asm__ __volatile__
691 ("cld\n\t"
692 "repne; scasb\n\t"
693 : "=D" (__res), "=&c" (__d0)
694 : "a" (__c), "0" (__s), "1" (0xffffffff),
695 "m" ( *(struct { char __x[0xfffffff]; } *)__s)
696 : "cc");
697 return __res - 1;
698}
699
700#undef memchr
701#define memchr(a,b,c) __my_memchr((a),(b),(c))
702static inline void *__my_memchr (__const void *__s, int __c, size_t __n)
703{
704 register unsigned long int __d0;
705 register unsigned char *__res;
706 if (__n == 0)
707 return NULL;
708 __asm__ __volatile__
709 ("repne; scasb\n\t"
710 "je 1f\n\t"
711 "movl $1,%0\n"
712 "1:"
713 : "=D" (__res), "=&c" (__d0)
714 : "a" (__c), "0" (__s), "1" (__n),
715 "m" ( *(struct { __extension__ char __x[__n]; } *)__s)
716 : "cc");
717 return __res - 1;
718}
719
720#endif /* __EMX__ (bird) */
721
722#ifdef CONFIG_WITH_MAKE_STATS
723extern long make_stats_allocations;
724extern unsigned long make_stats_allocated;
725extern unsigned long make_stats_allocated_sum;
726extern unsigned long make_stats_ht_lookups;
727extern unsigned long make_stats_ht_collisions;
728
729# ifdef __APPLE__
730# include <malloc/malloc.h>
731# define SIZE_OF_HEAP_BLOCK(ptr) malloc_size(ptr)
732
733# elif defined(__linux__) /* glibc */
734# include <malloc.h>
735# define SIZE_OF_HEAP_BLOCK(ptr) malloc_usable_size(ptr)
736
737# elif defined(_MSC_VER) || defined(__OS2__)
738# define SIZE_OF_HEAP_BLOCK(ptr) _msize(ptr)
739
740# else
741# include <stdlib.h>
742# define SIZE_OF_HEAP_BLOCK(ptr) 0
743#endif
744
745# if defined(CONFIG_WITH_MAKE_STATS) && !defined(ELECTRIC_HEAP)
746# define free xfree
747extern void xfree (void *);
748# endif
749
750#endif
751
752#ifdef CONFIG_WITH_IF_CONDITIONALS
753extern int expr_eval_if_conditionals(char *line, const struct floc *flocp);
754extern char *expr_eval_to_string(char *o, char *expr);
755#endif
756
757#ifdef KMK
758extern char *abspath(const char *name, char *apath);
759extern char *func_breakpoint(char *o, char **argv, const char *funcname);
760#endif
Note: See TracBrowser for help on using the repository browser.