]>
git.saurik.com Git - bison.git/blob - src/system.h
a52a34a554418973e8c12a7198702b197b468acf
15 #define getpid _getpid
18 #if defined(HAVE_STDLIB_H) || defined(MSDOS)
22 #if (defined(VMS) || defined(MSDOS)) && !defined(HAVE_STRING_H)
23 #define HAVE_STRING_H 1
26 #if defined(STDC_HEADERS) || defined(HAVE_STRING_H)
28 /* An ANSI string.h and pre-ANSI memory.h might conflict. */
29 #if !defined(STDC_HEADERS) && defined(HAVE_MEMORY_H)
31 #endif /* not STDC_HEADERS and HAVE_MEMORY_H */
33 #define bcopy(src, dst, num) memcpy((dst), (src), (num))
35 #else /* not STDC_HEADERS and not HAVE_STRING_H */
37 /* memory.h and strings.h conflict on some systems. */
38 #endif /* not STDC_HEADERS and not HAVE_STRING_H */
44 # define setlocale(Category, Locale)
49 # define _(Text) gettext (Text)
51 # define bindtextdomain(Domain, Directory)
52 # define textdomain(Domain)
57 /* In the meantime, waiting for Automake. */
58 #define PACKAGE "bison"
59 #define LOCALEDIR "/usr/local/share/locale"
61 #endif /* BISON_SYSTEM_H */