1191783Srmacklem/* defines.h.  Generated from defines.h.in by configure.  */
2191783Srmacklem/* defines.h.in.  Generated from configure.ac by autoheader.  */
3191783Srmacklem
4191783Srmacklem
5191783Srmacklem/* Unix definition file for less.  -*- C -*-
6191783Srmacklem *
7191783Srmacklem * This file has 3 sections:
8191783Srmacklem * User preferences.
9191783Srmacklem * Settings always true on Unix.
10191783Srmacklem * Settings automatically determined by configure.
11191783Srmacklem *
12191783Srmacklem * * * * * *  WARNING  * * * * * *
13191783Srmacklem * If you edit defines.h by hand, do "touch stamp-h" before you run make
14191783Srmacklem * so config.status doesn't overwrite your changes.
15191783Srmacklem */
16191783Srmacklem
17191783Srmacklem/* User preferences.  */
18191783Srmacklem
19191783Srmacklem/*
20191783Srmacklem * SECURE is 1 if you wish to disable a bunch of features in order to
21191783Srmacklem * be safe to run by unprivileged users.
22191783Srmacklem * SECURE_COMPILE is set by the --with-secure configure option.
23191783Srmacklem */
24191783Srmacklem#define	SECURE		SECURE_COMPILE
25191783Srmacklem
26191783Srmacklem/*
27191783Srmacklem * SHELL_ESCAPE is 1 if you wish to allow shell escapes.
28191783Srmacklem * (This is possible only if your system supplies the system() function.)
29191783Srmacklem */
30191783Srmacklem#define	SHELL_ESCAPE	(!SECURE)
31191783Srmacklem
32191783Srmacklem/*
33191783Srmacklem * EXAMINE is 1 if you wish to allow examining files by name from within less.
34191783Srmacklem */
35191783Srmacklem#define	EXAMINE		(!SECURE)
36191783Srmacklem
37273736Shselasky/*
38273736Shselasky * TAB_COMPLETE_FILENAME is 1 if you wish to allow the TAB key
39273736Shselasky * to complete filenames at prompts.
40191783Srmacklem */
41191783Srmacklem#define	TAB_COMPLETE_FILENAME	(!SECURE)
42191783Srmacklem
43191783Srmacklem/*
44191783Srmacklem * CMD_HISTORY is 1 if you wish to allow keys to cycle through
45191783Srmacklem * previous commands at prompts.
46191783Srmacklem */
47191783Srmacklem#define	CMD_HISTORY	1
48249596Sken
49249592Sken/*
50249592Sken * HILITE_SEARCH is 1 if you wish to have search targets to be
51193511Srwatson * displayed in standout mode.
52193511Srwatson */
53191783Srmacklem#define	HILITE_SEARCH	1
54241561Srmacklem
55241561Srmacklem/*
56191783Srmacklem * EDITOR is 1 if you wish to allow editor invocation (the "v" command).
57191783Srmacklem * (This is possible only if your system supplies the system() function.)
58191783Srmacklem * EDIT_PGM is the name of the (default) editor to be invoked.
59191783Srmacklem */
60249592Sken#define	EDITOR		(!SECURE)
61191783Srmacklem
62191783Srmacklem/*
63191783Srmacklem * TAGS is 1 if you wish to support tag files.
64191783Srmacklem */
65191783Srmacklem#define	TAGS		(!SECURE)
66191783Srmacklem
67191783Srmacklem/*
68191783Srmacklem * USERFILE is 1 if you wish to allow a .less file to specify
69191783Srmacklem * user-defined key bindings.
70191783Srmacklem */
71191783Srmacklem#define	USERFILE	(!SECURE)
72191783Srmacklem
73191783Srmacklem/*
74191783Srmacklem * GLOB is 1 if you wish to have shell metacharacters expanded in filenames.
75191783Srmacklem * This will generally work if your system provides the "popen" function
76191783Srmacklem * and the "echo" shell command.
77191783Srmacklem */
78191783Srmacklem#define	GLOB		(!SECURE)
79191783Srmacklem
80191783Srmacklem/*
81191783Srmacklem * PIPEC is 1 if you wish to have the "|" command
82191783Srmacklem * which allows the user to pipe data into a shell command.
83191783Srmacklem */
84191783Srmacklem#define	PIPEC		(!SECURE && HAVE_POPEN)
85191783Srmacklem
86221615Srmacklem/*
87191783Srmacklem * LOGFILE is 1 if you wish to allow the -o option (to create log files).
88191783Srmacklem */
89191783Srmacklem#define	LOGFILE		(!SECURE)
90191783Srmacklem
91274027Skib/*
92191783Srmacklem * GNU_OPTIONS is 1 if you wish to support the GNU-style command
93191783Srmacklem * line options --help and --version.
94191783Srmacklem */
95192782Srmacklem#define	GNU_OPTIONS	1
96274027Skib
97192782Srmacklem/*
98192782Srmacklem * ONLY_RETURN is 1 if you want RETURN to be the only input which
99192782Srmacklem * will continue past an error message.
100274027Skib * Otherwise, any key will continue past an error message.
101192782Srmacklem */
102192782Srmacklem#define	ONLY_RETURN	0
103261055Smav
104261055Smav/*
105191783Srmacklem * LESSKEYFILE is the filename of the default lesskey output file
106191783Srmacklem * (in the HOME directory).
107191783Srmacklem * LESSKEYFILE_SYS is the filename of the system-wide lesskey output file.
108217432Srmacklem * DEF_LESSKEYINFILE is the filename of the default lesskey input
109191783Srmacklem * (in the HOME directory).
110191783Srmacklem * LESSHISTFILE is the filename of the history file
111191783Srmacklem * (in the HOME directory).
112191783Srmacklem */
113191783Srmacklem#define	LESSKEYFILE		".less"
114191783Srmacklem#define	LESSKEYFILE_SYS		"/etc/lesskey"
115191783Srmacklem#define	DEF_LESSKEYINFILE	".lesskey"
116191783Srmacklem#define	LESSKEYINFILE_SYS	"/etc/syslesskey"
117191783Srmacklem#define LESSHISTFILE		".lesshst"
118191783Srmacklem
119192121Srmacklem
120191783Srmacklem/* Settings always true on Unix.  */
121191783Srmacklem
122191783Srmacklem/*
123282340Srmacklem * Define MSDOS_COMPILER if compiling under Microsoft C.
124282340Srmacklem */
125191783Srmacklem#define	MSDOS_COMPILER	0
126191783Srmacklem
127224086Szack/*
128191783Srmacklem * Pathname separator character.
129191783Srmacklem */
130191783Srmacklem#define	PATHNAME_SEP	"/"
131191783Srmacklem
132191783Srmacklem/*
133191783Srmacklem * The value returned from tgetent on success.
134191783Srmacklem * Some HP-UX systems return 0 on success.
135224086Szack */
136191783Srmacklem#define TGETENT_OK  1
137191783Srmacklem
138191783Srmacklem/*
139191783Srmacklem * HAVE_ANSI_PROTOS	is 1 if your compiler supports ANSI function prototypes.
140191783Srmacklem */
141191783Srmacklem#define HAVE_ANSI_PROTOS	1
142191783Srmacklem
143191783Srmacklem/*
144224086Szack * HAVE_SYS_TYPES_H is 1 if your system has <sys/types.h>.
145191783Srmacklem */
146191783Srmacklem#define HAVE_SYS_TYPES_H 1
147191783Srmacklem
148191783Srmacklem/*
149191783Srmacklem * Define if you have the <sgstat.h> header file.
150191783Srmacklem */
151191783Srmacklem/* #undef HAVE_SGSTAT_H */
152191783Srmacklem
153191783Srmacklem/*
154191783Srmacklem * HAVE_PERROR is 1 if your system has the perror() call.
155191783Srmacklem * (Actually, if it has sys_errlist, sys_nerr and errno.)
156191783Srmacklem */
157249592Sken#define	HAVE_PERROR	1
158191783Srmacklem
159191783Srmacklem/*
160191783Srmacklem * HAVE_TIME is 1 if your system has the time() call.
161191783Srmacklem */
162191783Srmacklem#define	HAVE_TIME	1
163191783Srmacklem
164191783Srmacklem/*
165191783Srmacklem * HAVE_SHELL is 1 if your system supports a SHELL command interpreter.
166191783Srmacklem */
167191783Srmacklem#define	HAVE_SHELL	1
168191783Srmacklem
169191783Srmacklem/*
170191783Srmacklem * Default shell metacharacters and meta-escape character.
171191783Srmacklem */
172191783Srmacklem#define	DEF_METACHARS	"; *?\t\n'\"()<>[]|&^`#\\$%=~{},"
173191783Srmacklem#define	DEF_METAESCAPE	"\\"
174191783Srmacklem
175191783Srmacklem/*
176191783Srmacklem * HAVE_DUP is 1 if your system has the dup() call.
177191783Srmacklem */
178191783Srmacklem#define	HAVE_DUP	1
179191783Srmacklem
180191783Srmacklem/* Define to 1 if you have the memcpy() function. */
181191783Srmacklem#define HAVE_MEMCPY 1
182191783Srmacklem
183191783Srmacklem/* Define to 1 if you have the strchr() function. */
184191783Srmacklem#define HAVE_STRCHR 1
185191783Srmacklem
186191783Srmacklem/* Define to 1 if you have the strstr() function. */
187191783Srmacklem#define HAVE_STRSTR 1
188191783Srmacklem
189191783Srmacklem/* Define to 1 to support reading lesskey source files (not just binary). */
190191783Srmacklem#define HAVE_LESSKEYSRC 1
191191783Srmacklem
192191783Srmacklem/*
193191783Srmacklem * Sizes of various buffers.
194191783Srmacklem */
195191783Srmacklem#if 0 /* old sizes for small memory machines */
196191783Srmacklem#define	CMDBUF_SIZE	512	/* Buffer for multichar commands */
197191783Srmacklem#define	UNGOT_SIZE	100	/* Max chars to unget() */
198191783Srmacklem#define	LINEBUF_SIZE	1024	/* Max size of line in input file */
199191783Srmacklem#define	OUTBUF_SIZE	1024	/* Output buffer */
200191783Srmacklem#define	PROMPT_SIZE	200	/* Max size of prompt string */
201191783Srmacklem#define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
202191783Srmacklem#define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
203191783Srmacklem#define	TAGLINE_SIZE	512	/* Max size of line in tags file */
204224086Szack#define	TABSTOP_MAX	32	/* Max number of custom tab stops */
205191783Srmacklem#else /* more reasonable sizes for modern machines */
206191783Srmacklem#define	CMDBUF_SIZE	2048	/* Buffer for multichar commands */
207191783Srmacklem#define	UNGOT_SIZE	200	/* Max chars to unget() */
208191783Srmacklem#define	LINEBUF_SIZE	1024	/* Initial max size of line in input file */
209192121Srmacklem#define	OUTBUF_SIZE	1024	/* Output buffer */
210191783Srmacklem#define	PROMPT_SIZE	2048	/* Max size of prompt string */
211191783Srmacklem#define	TERMBUF_SIZE	2048	/* Termcap buffer for tgetent */
212191783Srmacklem#define	TERMSBUF_SIZE	1024	/* Buffer to hold termcap strings */
213224086Szack#define	TAGLINE_SIZE	1024	/* Max size of line in tags file */
214191783Srmacklem#define	TABSTOP_MAX	128	/* Max number of custom tab stops */
215192121Srmacklem#endif
216192121Srmacklem
217192121Srmacklem/* Define as the return type of signal handlers (int or void).  */
218192121Srmacklem#define RETSIGTYPE void
219192121Srmacklem
220192121Srmacklem/* Settings automatically determined by configure.  */
221192121Srmacklem
222192121Srmacklem
223192121Srmacklem/* Define EDIT_PGM to your editor. */
224192121Srmacklem#define EDIT_PGM "vi"
225192121Srmacklem
226192121Srmacklem/* Define HAVE_CONST if your compiler supports the "const" modifier. */
227224086Szack#define HAVE_CONST 1
228192121Srmacklem
229192121Srmacklem/* Define to 1 if you have the <ctype.h> header file. */
230191783Srmacklem#define HAVE_CTYPE_H 1
231191783Srmacklem
232191783Srmacklem/* Define HAVE_ERRNO if you have the errno variable. */
233241561Srmacklem#define HAVE_ERRNO 1
234241561Srmacklem
235241561Srmacklem/* Define to 1 if you have the <errno.h> header file. */
236241561Srmacklem#define HAVE_ERRNO_H 1
237300254Srmacklem
238300254Srmacklem/* Define to 1 if you have the `fchmod' function. */
239300254Srmacklem#define HAVE_FCHMOD 1
240300254Srmacklem
241241561Srmacklem/* Define to 1 if you have the <fcntl.h> header file. */
242241561Srmacklem#define HAVE_FCNTL_H 1
243241561Srmacklem
244241561Srmacklem/* Define HAVE_FILENO if you have the fileno() macro. */
245300254Srmacklem#define HAVE_FILENO 1
246300254Srmacklem
247241561Srmacklem/* Define to 1 if you have the `fsync' function. */
248241561Srmacklem#define HAVE_FSYNC 1
249241561Srmacklem
250241561Srmacklem/* GNU regex library */
251192780Srmacklem/* #undef HAVE_GNU_REGEX */
252191783Srmacklem
253192780Srmacklem/* Define to 1 if you have the <inttypes.h> header file. */
254241561Srmacklem#define HAVE_INTTYPES_H 1
255241561Srmacklem
256241561Srmacklem/* Define to 1 if you have the <limits.h> header file. */
257192780Srmacklem#define HAVE_LIMITS_H 1
258192780Srmacklem
259192780Srmacklem/* Define to 1 if you have the <linux/magic.h> header file. */
260224086Szack/* #undef HAVE_LINUX_MAGIC_H */
261192780Srmacklem
262192780Srmacklem/* Define HAVE_LOCALE if you have locale.h and setlocale. */
263191783Srmacklem#define HAVE_LOCALE 1
264261055Smav
265241561Srmacklem/* Define to 1 if you have the `nanosleep' function. */
266241561Srmacklem#define HAVE_NANOSLEEP 1
267241561Srmacklem
268191783Srmacklem/* Define to 1 if you have the <ncursesw/termcap.h> header file. */
269191783Srmacklem/* #undef HAVE_NCURSESW_TERMCAP_H */
270191783Srmacklem
271191783Srmacklem/* Define to 1 if you have the <ncurses/termcap.h> header file. */
272191783Srmacklem/* #undef HAVE_NCURSES_TERMCAP_H */
273191783Srmacklem
274191783Srmacklem/* Define HAVE_OSPEED if your termcap library has the ospeed variable. */
275191783Srmacklem#define HAVE_OSPEED 1
276191783Srmacklem
277191783Srmacklem/* PCRE (Perl-compatible regular expression) library */
278191783Srmacklem/* #undef HAVE_PCRE */
279191783Srmacklem
280191783Srmacklem/* PCRE2 (Perl-compatible regular expression) library */
281191783Srmacklem/* #undef HAVE_PCRE2 */
282191783Srmacklem
283224086Szack/* Define to 1 if you have the `poll' function. */
284191783Srmacklem#define HAVE_POLL 1
285191783Srmacklem
286191783Srmacklem/* Define to 1 if you have the `popen' function. */
287191783Srmacklem#define HAVE_POPEN 1
288191783Srmacklem
289224086Szack/* POSIX regcomp() and regex.h */
290191783Srmacklem#define HAVE_POSIX_REGCOMP 1
291191783Srmacklem
292191783Srmacklem/* Define HAVE_PROCFS if have have fstatfs with f_type and PROC_SUPER_MAGIC.
293191783Srmacklem   */
294191783Srmacklem/* #undef HAVE_PROCFS */
295191783Srmacklem
296191783Srmacklem/* Define to 1 if you have the `realpath' function. */
297191783Srmacklem#define HAVE_REALPATH 1
298191783Srmacklem
299261055Smav/* System V regcmp() */
300261055Smav/* #undef HAVE_REGCMP */
301261055Smav
302261055Smav/* */
303191783Srmacklem/* #undef HAVE_REGEXEC2 */
304224086Szack
305224086Szack/* BSD re_comp() */
306284199Skib/* #undef HAVE_RE_COMP */
307284199Skib
308224086Szack/* Define HAVE_SIGEMPTYSET if you have the sigemptyset macro. */
309191783Srmacklem#define HAVE_SIGEMPTYSET 1
310191783Srmacklem
311191783Srmacklem/* Define to 1 if you have the `sigprocmask' function. */
312191783Srmacklem#define HAVE_SIGPROCMASK 1
313191783Srmacklem
314191783Srmacklem/* Define to 1 if you have the `sigsetmask' function. */
315191783Srmacklem#define HAVE_SIGSETMASK 1
316261055Smav
317261055Smav/* Define to 1 if the system has the type `sigset_t'. */
318191783Srmacklem#define HAVE_SIGSET_T 1
319191783Srmacklem
320269398Srmacklem/* Define to 1 if you have the `snprintf' function. */
321269398Srmacklem#define HAVE_SNPRINTF 1
322269398Srmacklem
323269398Srmacklem/* Define to 1 if you have the `stat' function. */
324261055Smav#define HAVE_STAT 1
325191783Srmacklem
326191783Srmacklem/* Define HAVE_STAT_INO if your struct stat has st_ino and st_dev. */
327191783Srmacklem#define HAVE_STAT_INO 1
328191783Srmacklem
329191783Srmacklem/* Define to 1 if you have the <stdckdint.h> header file. */
330191783Srmacklem#define HAVE_STDCKDINT_H 1
331191783Srmacklem
332191783Srmacklem/* Define to 1 if you have the <stdint.h> header file. */
333191783Srmacklem#define HAVE_STDINT_H 1
334191783Srmacklem
335192780Srmacklem/* Define to 1 if you have the <stdio.h> header file. */
336191783Srmacklem#define HAVE_STDIO_H 1
337191783Srmacklem
338191783Srmacklem/* Define to 1 if you have the <stdlib.h> header file. */
339191783Srmacklem#define HAVE_STDLIB_H 1
340192780Srmacklem
341191783Srmacklem/* Define HAVE_STRERROR if you have the strerror() function. */
342191783Srmacklem#define HAVE_STRERROR 1
343191783Srmacklem
344191783Srmacklem/* Define to 1 if you have the <strings.h> header file. */
345191783Srmacklem#define HAVE_STRINGS_H 1
346191783Srmacklem
347191783Srmacklem/* Define to 1 if you have the <string.h> header file. */
348191783Srmacklem#define HAVE_STRING_H 1
349191783Srmacklem
350191783Srmacklem/* Define to 1 if you have the `strsignal' function. */
351191783Srmacklem#define HAVE_STRSIGNAL 1
352191783Srmacklem
353191783Srmacklem/* Define to 1 if you have the `system' function. */
354191783Srmacklem#define HAVE_SYSTEM 1
355191783Srmacklem
356261055Smav/* Define HAVE_SYS_ERRLIST if you have the sys_errlist[] variable. */
357269398Srmacklem#define HAVE_SYS_ERRLIST 1
358269398Srmacklem
359269398Srmacklem/* Define to 1 if you have the <sys/ioctl.h> header file. */
360269398Srmacklem#define HAVE_SYS_IOCTL_H 1
361269398Srmacklem
362269398Srmacklem/* Define to 1 if you have the <sys/stat.h> header file. */
363269398Srmacklem#define HAVE_SYS_STAT_H 1
364269398Srmacklem
365269398Srmacklem/* Define to 1 if you have the <sys/stream.h> header file. */
366269398Srmacklem/* #undef HAVE_SYS_STREAM_H */
367269398Srmacklem
368269398Srmacklem/* Define to 1 if you have the <sys/types.h> header file. */
369191783Srmacklem#define HAVE_SYS_TYPES_H 1
370191783Srmacklem
371191783Srmacklem/* Define to 1 if you have the <sys/wait.h> header file. */
372191783Srmacklem#define HAVE_SYS_WAIT_H 1
373191783Srmacklem
374191783Srmacklem/* Define to 1 if you have the <termcap.h> header file. */
375191783Srmacklem#define HAVE_TERMCAP_H 1
376191783Srmacklem
377191783Srmacklem/* Define HAVE_TERMIOS_FUNCS if you have tcgetattr/tcsetattr. */
378269398Srmacklem#define HAVE_TERMIOS_FUNCS 1
379269398Srmacklem
380269398Srmacklem/* Define to 1 if you have the <termios.h> header file. */
381269398Srmacklem#define HAVE_TERMIOS_H 1
382269398Srmacklem
383269398Srmacklem/* Define to 1 if you have the <termio.h> header file. */
384269398Srmacklem/* #undef HAVE_TERMIO_H */
385269398Srmacklem
386269398Srmacklem/* Define to 1 if you have the <time.h> header file. */
387269398Srmacklem#define HAVE_TIME_H 1
388269398Srmacklem
389269398Srmacklem/* Define HAVE_TIME_T if your system supports the "time_t" type. */
390269398Srmacklem#define HAVE_TIME_T 1
391269398Srmacklem
392269398Srmacklem/* Define to 1 if you have the `ttyname' function. */
393269398Srmacklem#define HAVE_TTYNAME 1
394191783Srmacklem
395269398Srmacklem/* Define to 1 if you have the <unistd.h> header file. */
396269398Srmacklem#define HAVE_UNISTD_H 1
397269398Srmacklem
398269398Srmacklem/* Define HAVE_UPPER_LOWER if you have isupper, islower, toupper, tolower. */
399269398Srmacklem#define HAVE_UPPER_LOWER 1
400269398Srmacklem
401269398Srmacklem/* Define to 1 if you have the `usleep' function. */
402191783Srmacklem#define HAVE_USLEEP 1
403269398Srmacklem
404269398Srmacklem/* Henry Spencer V8 regcomp() and regexp.h */
405224086Szack/* #undef HAVE_V8_REGCOMP */
406224086Szack
407191783Srmacklem/* Define to 1 if you have the <values.h> header file. */
408191783Srmacklem/* #undef HAVE_VALUES_H */
409191783Srmacklem
410261055Smav/* Define HAVE_VOID if your compiler supports the "void" type. */
411261055Smav#define HAVE_VOID 1
412261055Smav
413261055Smav/* Define HAVE_WCTYPE if you have iswupper, iswlower, towupper, towlower. */
414261055Smav#define HAVE_WCTYPE 1
415261055Smav
416261055Smav/* Define to 1 if you have the <wctype.h> header file. */
417261055Smav#define HAVE_WCTYPE_H 1
418261055Smav
419261055Smav/* Define to 1 if you have the `_setjmp' function. */
420191783Srmacklem#define HAVE__SETJMP 1
421191783Srmacklem
422191783Srmacklem/* Define MUST_DEFINE_ERRNO if you have errno but it is not define in errno.h.
423191783Srmacklem   */
424191783Srmacklem/* #undef MUST_DEFINE_ERRNO */
425191783Srmacklem
426191783Srmacklem/* Define MUST_DEFINE_OSPEED if you have ospeed but it is not defined in
427191783Srmacklem   termcap.h. */
428224086Szack/* #undef MUST_DEFINE_OSPEED */
429191783Srmacklem
430191783Srmacklem/* pattern matching is supported, but without metacharacters. */
431191783Srmacklem/* #undef NO_REGEX */
432191783Srmacklem
433191783Srmacklem/* Define to the address where bug reports for this package should be sent. */
434191783Srmacklem#define PACKAGE_BUGREPORT ""
435191783Srmacklem
436224086Szack/* Define to the full name of this package. */
437224086Szack#define PACKAGE_NAME "less"
438191783Srmacklem
439191783Srmacklem/* Define to the full name and version of this package. */
440191783Srmacklem#define PACKAGE_STRING "less 1"
441191783Srmacklem
442191783Srmacklem/* Define to the one symbol short name of this package. */
443191783Srmacklem#define PACKAGE_TARNAME "less"
444191783Srmacklem
445191783Srmacklem/* Define to the home page for this package. */
446191783Srmacklem#define PACKAGE_URL ""
447191783Srmacklem
448191783Srmacklem/* Define to the version of this package. */
449191783Srmacklem#define PACKAGE_VERSION "1"
450191783Srmacklem
451192782Srmacklem/* Define SECURE_COMPILE=1 to build a secure version of less. */
452192782Srmacklem#define SECURE_COMPILE 0
453192782Srmacklem
454192782Srmacklem/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
455192782Srmacklem/* #undef STAT_MACROS_BROKEN */
456192782Srmacklem
457192782Srmacklem/* Define to 1 if all of the C90 standard headers exist (not just the ones
458192782Srmacklem   required in a freestanding environment). This macro is provided for
459192782Srmacklem   backward compatibility; new code need not use it. */
460261055Smav#define STDC_HEADERS 1
461261055Smav
462194408Srmacklem/* Number of bits in a file offset, on hosts where this is settable. */
463191783Srmacklem/* #undef _FILE_OFFSET_BITS */
464191783Srmacklem
465224086Szack/* Define for large files, on AIX-style hosts. */
466224086Szack/* #undef _LARGE_FILES */
467224086Szack
468191783Srmacklem/* Define to empty if `const' does not conform to ANSI C. */
469191783Srmacklem/* #undef const */
470191783Srmacklem
471191783Srmacklem/* Define to `long int' if <sys/types.h> does not define. */
472191783Srmacklem/* #undef off_t */
473191783Srmacklem
474191783Srmacklem/* Define to `unsigned int' if <sys/types.h> does not define. */
475191783Srmacklem/* #undef size_t */
476191783Srmacklem