blob: d87ec90f48cf7b6088e49648afbabfb0e94fcae1 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8
9/*
10 * NextStep has a problem with configure, undefine a few things:
11 */
12#ifdef NeXT
13# ifdef HAVE_UTIME
14# undef HAVE_UTIME
15# endif
16# ifdef HAVE_SYS_UTSNAME_H
17# undef HAVE_SYS_UTSNAME_H
18# endif
19#endif
20
21#include <stdio.h>
22#include <ctype.h>
23
24#ifdef VAXC
25# include <types.h>
26# include <stat.h>
27#else
28# include <sys/types.h>
29# include <sys/stat.h>
30#endif
31
32#ifdef HAVE_STDLIB_H
33# include <stdlib.h>
34#endif
35
Bram Moolenaar6ef8f9e2019-03-02 07:15:28 +010036#ifdef __CYGWIN__
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010037# define WIN32UNIX // Compiling for Win32 using Unix files.
Bram Moolenaar071d4272004-06-13 20:20:40 +000038# define BINARY_FILE_IO
Bram Moolenaar24552be2005-12-10 20:17:30 +000039
40# define CASE_INSENSITIVE_FILENAME
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010041# define USE_FNAME_CASE // Fix filename case differences.
Bram Moolenaar071d4272004-06-13 20:20:40 +000042#endif
43
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010044// On AIX 4.2 there is a conflicting prototype for ioctl() in stropts.h and
45// unistd.h. This hack should fix that (suggested by Jeff George).
46// But on AIX 4.3 it's alright (suggested by Jake Hamby).
Bram Moolenaar071d4272004-06-13 20:20:40 +000047#if defined(FEAT_GUI) && defined(_AIX) && !defined(_AIX43) && !defined(_NO_PROTO)
48# define _NO_PROTO
49#endif
50
51#ifdef HAVE_UNISTD_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +000052# include <unistd.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
55#ifdef HAVE_LIBC_H
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010056# include <libc.h> // for NeXT
Bram Moolenaar071d4272004-06-13 20:20:40 +000057#endif
58
59#ifdef HAVE_SYS_PARAM_H
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010060# include <sys/param.h> // defines BSD, if it's a BSD system
Bram Moolenaar071d4272004-06-13 20:20:40 +000061#endif
62
63/*
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 * Using getcwd() is preferred, because it checks for a buffer overflow.
65 * Don't use getcwd() on systems do use system("sh -c pwd"). There is an
66 * autoconf check for this.
67 * Use getcwd() anyway if getwd() isn't present.
68 */
69#if defined(HAVE_GETCWD) && !(defined(BAD_GETCWD) && defined(HAVE_GETWD))
70# define USE_GETCWD
71#endif
72
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010073// always use unlink() to remove files
Bram Moolenaar071d4272004-06-13 20:20:40 +000074#ifndef PROTO
75# ifdef VMS
Bram Moolenaar82c38fe2021-01-04 10:47:26 +010076# define vim_mkdir(x, y) mkdir((char *)vms_fixfilename(x), y)
77# define mch_rmdir(x) delete((char *)vms_fixfilename(x))
78# define mch_remove(x) delete((char *)vms_fixfilename(x))
Bram Moolenaar071d4272004-06-13 20:20:40 +000079# else
80# define vim_mkdir(x, y) mkdir((char *)(x), y)
81# define mch_rmdir(x) rmdir((char *)(x))
82# define mch_remove(x) unlink((char *)(x))
83# endif
84#endif
85
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010086// The number of arguments to a signal handler is configured here.
87// It used to be a long list of almost all systems. Any system that doesn't
88// have an argument???
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#define SIGHASARG
90
Bram Moolenaar071d4272004-06-13 20:20:40 +000091#ifdef SIGHASARG
Yegappan Lakshmananaebc6ef2022-08-27 21:24:26 +010092# define SIGPROTOARG (int)
93# define SIGDEFARG(s) (int s UNUSED)
94# define SIGDUMMYARG 0
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#else
96# define SIGPROTOARG (void)
97# define SIGDEFARG(s) ()
98# define SIGDUMMYARG
99#endif
100
101#ifdef HAVE_DIRENT_H
102# include <dirent.h>
103# ifndef NAMLEN
104# define NAMLEN(dirent) strlen((dirent)->d_name)
105# endif
106#else
107# define dirent direct
108# define NAMLEN(dirent) (dirent)->d_namlen
109# if HAVE_SYS_NDIR_H
110# include <sys/ndir.h>
111# endif
112# if HAVE_SYS_DIR_H
113# include <sys/dir.h>
114# endif
115# if HAVE_NDIR_H
116# include <ndir.h>
117# endif
118#endif
119
Bram Moolenaar300d7182022-06-20 12:01:10 +0100120#include <time.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121#ifdef HAVE_SYS_TIME_H
122# include <sys/time.h>
123#endif
124
125#include <signal.h>
126
127#if defined(DIRSIZ) && !defined(MAXNAMLEN)
128# define MAXNAMLEN DIRSIZ
129#endif
130
131#if defined(UFS_MAXNAMLEN) && !defined(MAXNAMLEN)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100132# define MAXNAMLEN UFS_MAXNAMLEN // for dynix/ptx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000133#endif
134
135#if defined(NAME_MAX) && !defined(MAXNAMLEN)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100136# define MAXNAMLEN NAME_MAX // for Linux before .99p3
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137#endif
138
139/*
140 * Note: if MAXNAMLEN has the wrong value, you will get error messages
141 * for not being able to open the swap file.
142 */
143#if !defined(MAXNAMLEN)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100144# define MAXNAMLEN 512 // for all other Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145#endif
146
147#define BASENAMELEN (MAXNAMLEN - 5)
148
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149#ifdef HAVE_PWD_H
150# include <pwd.h>
151#endif
152
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153#if (defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)) \
154 || (defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)) \
155 || defined(HAVE_SYSCTL) || defined(HAVE_SYSCONF)
156# define HAVE_TOTAL_MEM
157#endif
158
Bram Moolenaar82881492012-11-20 16:53:39 +0100159
160#ifndef PROTO
161
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162#ifdef VMS
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000163# include <unixio.h>
164# include <unixlib.h>
165# include <signal.h>
166# include <file.h>
167# include <ssdef.h>
168# include <descrip.h>
169# include <libclidef.h>
170# include <lnmdef.h>
171# include <psldef.h>
172# include <prvdef.h>
173# include <dvidef.h>
174# include <dcdef.h>
175# include <stsdef.h>
176# include <iodef.h>
177# include <ttdef.h>
178# include <tt2def.h>
179# include <jpidef.h>
180# include <rms.h>
181# include <trmdef.h>
182# include <string.h>
183# include <starlet.h>
184# include <socket.h>
185# include <lib$routines.h>
Bram Moolenaar4ffa0702013-12-11 17:12:37 +0100186# include <libdef.h>
187# include <libdtdef.h>
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000188
Bram Moolenaar467676d2020-12-30 13:14:45 +0100189# if defined(FEAT_GUI_MOTIF)
190# define XFree XFREE
191# define XmRepTypeInstallTearOffModelCon XMREPTYPEINSTALLTEAROFFMODELCON
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000192# endif
Bram Moolenaar467676d2020-12-30 13:14:45 +0100193#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000194
Bram Moolenaarb2d0e512020-05-07 18:37:03 +0200195#ifdef HAVE_FLOCK
196# include <sys/file.h>
197#endif
198
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100199#endif // PROTO
Bram Moolenaar82881492012-11-20 16:53:39 +0100200
201#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202typedef struct dsc$descriptor DESC;
203#endif
204
205/*
206 * Unix system-dependent file names
207 */
208#ifndef SYS_VIMRC_FILE
209# define SYS_VIMRC_FILE "$VIM/vimrc"
210#endif
211#ifndef SYS_GVIMRC_FILE
212# define SYS_GVIMRC_FILE "$VIM/gvimrc"
213#endif
214#ifndef DFLT_HELPFILE
215# define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt"
216#endif
217#ifndef FILETYPE_FILE
218# define FILETYPE_FILE "filetype.vim"
219#endif
220#ifndef FTPLUGIN_FILE
221# define FTPLUGIN_FILE "ftplugin.vim"
222#endif
223#ifndef INDENT_FILE
224# define INDENT_FILE "indent.vim"
225#endif
226#ifndef FTOFF_FILE
227# define FTOFF_FILE "ftoff.vim"
228#endif
229#ifndef FTPLUGOF_FILE
230# define FTPLUGOF_FILE "ftplugof.vim"
231#endif
232#ifndef INDOFF_FILE
233# define INDOFF_FILE "indoff.vim"
234#endif
235#ifndef SYS_MENU_FILE
236# define SYS_MENU_FILE "$VIMRUNTIME/menu.vim"
237#endif
238
239#ifndef USR_EXRC_FILE
240# ifdef VMS
241# define USR_EXRC_FILE "sys$login:.exrc"
242# else
243# define USR_EXRC_FILE "$HOME/.exrc"
244# endif
245#endif
246
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247#if !defined(USR_EXRC_FILE2) && defined(VMS)
248# define USR_EXRC_FILE2 "sys$login:_exrc"
249#endif
250
251#ifndef USR_VIMRC_FILE
252# ifdef VMS
253# define USR_VIMRC_FILE "sys$login:.vimrc"
254# else
255# define USR_VIMRC_FILE "$HOME/.vimrc"
256# endif
257#endif
258
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200259
Bram Moolenaarea98f8b2015-05-04 09:31:11 +0200260#if !defined(USR_VIMRC_FILE2)
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100261# ifdef VMS
262# define USR_VIMRC_FILE2 "sys$login:vimfiles/vimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200263# else
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100264# define USR_VIMRC_FILE2 "~/.vim/vimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200265# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200267
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200268#if !defined(USR_VIMRC_FILE3) && defined(VMS)
269# define USR_VIMRC_FILE3 "sys$login:_vimrc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270#endif
271
272#ifndef USR_GVIMRC_FILE
273# ifdef VMS
274# define USR_GVIMRC_FILE "sys$login:.gvimrc"
275# else
276# define USR_GVIMRC_FILE "$HOME/.gvimrc"
277# endif
278#endif
279
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200280#ifndef USR_GVIMRC_FILE2
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100281# ifdef VMS
282# define USR_GVIMRC_FILE2 "sys$login:vimfiles/gvimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200283# else
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100284# define USR_GVIMRC_FILE2 "~/.vim/gvimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200285# endif
286#endif
287
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288#ifdef VMS
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200289# ifndef USR_GVIMRC_FILE3
290# define USR_GVIMRC_FILE3 "sys$login:_gvimrc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291# endif
292#endif
293
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +0200294#ifndef VIM_DEFAULTS_FILE
295# define VIM_DEFAULTS_FILE "$VIMRUNTIME/defaults.vim"
296#endif
297
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298#ifndef EVIM_FILE
299# define EVIM_FILE "$VIMRUNTIME/evim.vim"
300#endif
301
302#ifdef FEAT_VIMINFO
303# ifndef VIMINFO_FILE
304# ifdef VMS
305# define VIMINFO_FILE "sys$login:.viminfo"
306# else
307# define VIMINFO_FILE "$HOME/.viminfo"
308# endif
309# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310# if !defined(VIMINFO_FILE2) && defined(VMS)
311# define VIMINFO_FILE2 "sys$login:_viminfo"
312# endif
313#endif
314
315#ifndef EXRC_FILE
316# define EXRC_FILE ".exrc"
317#endif
318
319#ifndef VIMRC_FILE
320# define VIMRC_FILE ".vimrc"
321#endif
322
323#ifdef FEAT_GUI
324# ifndef GVIMRC_FILE
325# define GVIMRC_FILE ".gvimrc"
326# endif
327#endif
328
329#ifndef SYNTAX_FNAME
330# define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim"
331#endif
332
333#ifndef DFLT_BDIR
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100334# ifdef VMS
335# define DFLT_BDIR "./,sys$login:,tmp:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100337# define DFLT_BDIR ".,~/tmp,~/" // default for 'backupdir'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338# endif
339#endif
340
341#ifndef DFLT_DIR
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100342# ifdef VMS
343# define DFLT_DIR "./,sys$login:,tmp:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100345# define DFLT_DIR ".,~/tmp,/var/tmp,/tmp" // default for 'directory'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346# endif
347#endif
348
349#ifndef DFLT_VDIR
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100350# ifdef VMS
351# define DFLT_VDIR "sys$login:vimfiles/view"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100353# define DFLT_VDIR "$HOME/.vim/view" // default for 'viewdir'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354# endif
355#endif
356
357#define DFLT_ERRORFILE "errors.err"
358
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100359#ifndef DFLT_RUNTIMEPATH
360
361# ifdef VMS
362# define DFLT_RUNTIMEPATH "sys$login:vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,sys$login:vimfiles/after"
363# define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364# else
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100365# ifdef RUNTIME_GLOBAL
366# ifdef RUNTIME_GLOBAL_AFTER
367# define DFLT_RUNTIMEPATH "~/.vim," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER ",~/.vim/after"
368# define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER
369# else
370# define DFLT_RUNTIMEPATH "~/.vim," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after,~/.vim/after"
371# define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after"
372# endif
373# else
374# define DFLT_RUNTIMEPATH "~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after"
375# define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after"
376# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000377# endif
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100378
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379#endif
380
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100381#ifdef VMS
382# ifndef VAX
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100383# define VMS_TEMPNAM // to fix default .LIS extension
Bram Moolenaar071d4272004-06-13 20:20:40 +0000384# endif
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100385# define TEMPNAME "TMP:v?XXXXXX.txt"
386# define TEMPNAMELEN 28
387#else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100388// Try several directories to put the temp files.
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100389# define TEMPDIRNAMES "$TMPDIR", "/tmp", ".", "$HOME"
390# define TEMPNAMELEN 256
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391#endif
392
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100393// Special wildcards that need to be handled by the shell
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394#define SPECIAL_WILDCHAR "`'{"
395
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396/*
397 * Unix has plenty of memory, use large buffers
398 */
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100399#define CMDBUFFSIZE 1024 // size of the command processing buffer
Bram Moolenaar38f12a92008-06-20 16:07:02 +0000400
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100401// Use the system path length if it makes sense.
Bram Moolenaar38f12a92008-06-20 16:07:02 +0000402#if defined(PATH_MAX) && (PATH_MAX > 1000)
403# define MAXPATHL PATH_MAX
404#else
405# define MAXPATHL 1024
406#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100408#define CHECK_INODE // used when checking if a swap file already
409 // exists for a file
410#ifdef VMS // Use less memory because of older systems
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411# ifndef DFLT_MAXMEM
412# define DFLT_MAXMEM (2*1024)
413# endif
414# ifndef DFLT_MAXMEMTOT
415# define DFLT_MAXMEMTOT (5*1024)
416# endif
417#else
418# ifndef DFLT_MAXMEM
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100419# define DFLT_MAXMEM (5*1024) // use up to 5 Mbyte for a buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420# endif
421# ifndef DFLT_MAXMEMTOT
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100422# define DFLT_MAXMEMTOT (10*1024) // use up to 10 Mbyte for Vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423# endif
424#endif
425
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100426// memmove() is not present on all systems, use memmove, bcopy or memcpy.
427// Some systems have (void *) arguments, some (char *). If we use (char *) it
428// works for all
Bram Moolenaar52c0de12017-01-26 21:36:34 +0100429#if defined(USEMEMMOVE) || (!defined(USEBCOPY) && !defined(USEMEMCPY))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430# define mch_memmove(to, from, len) memmove((char *)(to), (char *)(from), len)
431#else
432# ifdef USEBCOPY
433# define mch_memmove(to, from, len) bcopy((char *)(from), (char *)(to), len)
434# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100435 // ifdef USEMEMCPY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436# define mch_memmove(to, from, len) memcpy((char *)(to), (char *)(from), len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437# endif
438#endif
439
440#ifndef PROTO
441# ifdef HAVE_RENAME
442# define mch_rename(src, dst) rename(src, dst)
443# else
Bram Moolenaard99df422016-01-29 23:20:40 +0100444int mch_rename(const char *src, const char *dest);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000445# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446# ifndef VMS
447# ifdef __MVS__
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100448 // on OS390 Unix getenv() doesn't return a pointer to persistent
449 // storage -> use __getenv()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450# define mch_getenv(x) (char_u *)__getenv((char *)(x))
451# else
452# define mch_getenv(x) (char_u *)getenv((char *)(x))
453# endif
454# define mch_setenv(name, val, x) setenv(name, val, x)
455# endif
456#endif
457
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100458// Note: Some systems need both string.h and strings.h (Savage). However,
459// some systems can't handle both, only use string.h in that case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460#ifdef HAVE_STRING_H
461# include <string.h>
462#endif
463#if defined(HAVE_STRINGS_H) && !defined(NO_STRINGS_WITH_STRING_H)
464# include <strings.h>
465#endif
466
467#if defined(HAVE_SETJMP_H)
468# include <setjmp.h>
469# ifdef HAVE_SIGSETJMP
470# define JMP_BUF sigjmp_buf
471# define SETJMP(x) sigsetjmp((x), 1)
472# define LONGJMP siglongjmp
473# else
474# define JMP_BUF jmp_buf
475# define SETJMP(x) setjmp(x)
476# define LONGJMP longjmp
477# endif
478#endif
479
Bram Moolenaarc41053062014-03-25 13:46:26 +0100480#ifndef HAVE_DUP
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100481# define HAVE_DUP // have dup()
Bram Moolenaarc41053062014-03-25 13:46:26 +0100482#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100483#define HAVE_ST_MODE // have stat.st_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100485// We have three kinds of ACL support.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486#define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL || HAVE_AIX_ACL)