blob: c3a7fec19a1a8a337d561128a7644d6d90cd88ca [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 Moolenaar9bf703d2019-11-30 19:44:38 +010091// List 3 arg systems here. I guess __sgi, please test and correct me. jw.
Bram Moolenaar071d4272004-06-13 20:20:40 +000092#if defined(__sgi) && defined(HAVE_SIGCONTEXT)
93# define SIGHAS3ARGS
94#endif
95
96#ifdef SIGHASARG
97# ifdef SIGHAS3ARGS
98# define SIGPROTOARG (int, int, struct sigcontext *)
Yegappan Lakshmanand2b98ab2021-09-18 12:15:08 +020099# define SIGDEFARG(s) (int s, int sig2, struct sigcontext *scont)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100# define SIGDUMMYARG 0, 0, (struct sigcontext *)0
101# else
102# define SIGPROTOARG (int)
Yegappan Lakshmanand2b98ab2021-09-18 12:15:08 +0200103# define SIGDEFARG(s) (int s UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104# define SIGDUMMYARG 0
105# endif
106#else
107# define SIGPROTOARG (void)
108# define SIGDEFARG(s) ()
109# define SIGDUMMYARG
110#endif
111
112#ifdef HAVE_DIRENT_H
113# include <dirent.h>
114# ifndef NAMLEN
115# define NAMLEN(dirent) strlen((dirent)->d_name)
116# endif
117#else
118# define dirent direct
119# define NAMLEN(dirent) (dirent)->d_namlen
120# if HAVE_SYS_NDIR_H
121# include <sys/ndir.h>
122# endif
123# if HAVE_SYS_DIR_H
124# include <sys/dir.h>
125# endif
126# if HAVE_NDIR_H
127# include <ndir.h>
128# endif
129#endif
130
Bram Moolenaar10455d42019-11-21 15:36:18 +0100131// on some systems time.h should not be included together with sys/time.h
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132#if !defined(HAVE_SYS_TIME_H) || defined(TIME_WITH_SYS_TIME)
Bram Moolenaar10455d42019-11-21 15:36:18 +0100133# include <time.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134#endif
135#ifdef HAVE_SYS_TIME_H
136# include <sys/time.h>
137#endif
138
139#include <signal.h>
140
141#if defined(DIRSIZ) && !defined(MAXNAMLEN)
142# define MAXNAMLEN DIRSIZ
143#endif
144
145#if defined(UFS_MAXNAMLEN) && !defined(MAXNAMLEN)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100146# define MAXNAMLEN UFS_MAXNAMLEN // for dynix/ptx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147#endif
148
149#if defined(NAME_MAX) && !defined(MAXNAMLEN)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100150# define MAXNAMLEN NAME_MAX // for Linux before .99p3
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151#endif
152
153/*
154 * Note: if MAXNAMLEN has the wrong value, you will get error messages
155 * for not being able to open the swap file.
156 */
157#if !defined(MAXNAMLEN)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100158# define MAXNAMLEN 512 // for all other Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159#endif
160
161#define BASENAMELEN (MAXNAMLEN - 5)
162
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163#ifdef HAVE_PWD_H
164# include <pwd.h>
165#endif
166
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167#if (defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)) \
168 || (defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)) \
169 || defined(HAVE_SYSCTL) || defined(HAVE_SYSCONF)
170# define HAVE_TOTAL_MEM
171#endif
172
Bram Moolenaar82881492012-11-20 16:53:39 +0100173
174#ifndef PROTO
175
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176#ifdef VMS
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000177# include <unixio.h>
178# include <unixlib.h>
179# include <signal.h>
180# include <file.h>
181# include <ssdef.h>
182# include <descrip.h>
183# include <libclidef.h>
184# include <lnmdef.h>
185# include <psldef.h>
186# include <prvdef.h>
187# include <dvidef.h>
188# include <dcdef.h>
189# include <stsdef.h>
190# include <iodef.h>
191# include <ttdef.h>
192# include <tt2def.h>
193# include <jpidef.h>
194# include <rms.h>
195# include <trmdef.h>
196# include <string.h>
197# include <starlet.h>
198# include <socket.h>
199# include <lib$routines.h>
Bram Moolenaar4ffa0702013-12-11 17:12:37 +0100200# include <libdef.h>
201# include <libdtdef.h>
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000202
Bram Moolenaar467676d2020-12-30 13:14:45 +0100203# if defined(FEAT_GUI_MOTIF)
204# define XFree XFREE
205# define XmRepTypeInstallTearOffModelCon XMREPTYPEINSTALLTEAROFFMODELCON
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000206# endif
Bram Moolenaar467676d2020-12-30 13:14:45 +0100207#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208
Bram Moolenaarb2d0e512020-05-07 18:37:03 +0200209#ifdef HAVE_FLOCK
210# include <sys/file.h>
211#endif
212
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100213#endif // PROTO
Bram Moolenaar82881492012-11-20 16:53:39 +0100214
215#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216typedef struct dsc$descriptor DESC;
217#endif
218
219/*
220 * Unix system-dependent file names
221 */
222#ifndef SYS_VIMRC_FILE
223# define SYS_VIMRC_FILE "$VIM/vimrc"
224#endif
225#ifndef SYS_GVIMRC_FILE
226# define SYS_GVIMRC_FILE "$VIM/gvimrc"
227#endif
228#ifndef DFLT_HELPFILE
229# define DFLT_HELPFILE "$VIMRUNTIME/doc/help.txt"
230#endif
231#ifndef FILETYPE_FILE
232# define FILETYPE_FILE "filetype.vim"
233#endif
234#ifndef FTPLUGIN_FILE
235# define FTPLUGIN_FILE "ftplugin.vim"
236#endif
237#ifndef INDENT_FILE
238# define INDENT_FILE "indent.vim"
239#endif
240#ifndef FTOFF_FILE
241# define FTOFF_FILE "ftoff.vim"
242#endif
243#ifndef FTPLUGOF_FILE
244# define FTPLUGOF_FILE "ftplugof.vim"
245#endif
246#ifndef INDOFF_FILE
247# define INDOFF_FILE "indoff.vim"
248#endif
249#ifndef SYS_MENU_FILE
250# define SYS_MENU_FILE "$VIMRUNTIME/menu.vim"
251#endif
252
253#ifndef USR_EXRC_FILE
254# ifdef VMS
255# define USR_EXRC_FILE "sys$login:.exrc"
256# else
257# define USR_EXRC_FILE "$HOME/.exrc"
258# endif
259#endif
260
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261#if !defined(USR_EXRC_FILE2) && defined(VMS)
262# define USR_EXRC_FILE2 "sys$login:_exrc"
263#endif
264
265#ifndef USR_VIMRC_FILE
266# ifdef VMS
267# define USR_VIMRC_FILE "sys$login:.vimrc"
268# else
269# define USR_VIMRC_FILE "$HOME/.vimrc"
270# endif
271#endif
272
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200273
Bram Moolenaarea98f8b2015-05-04 09:31:11 +0200274#if !defined(USR_VIMRC_FILE2)
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100275# ifdef VMS
276# define USR_VIMRC_FILE2 "sys$login:vimfiles/vimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200277# else
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100278# define USR_VIMRC_FILE2 "~/.vim/vimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200279# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280#endif
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200281
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200282#if !defined(USR_VIMRC_FILE3) && defined(VMS)
283# define USR_VIMRC_FILE3 "sys$login:_vimrc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284#endif
285
286#ifndef USR_GVIMRC_FILE
287# ifdef VMS
288# define USR_GVIMRC_FILE "sys$login:.gvimrc"
289# else
290# define USR_GVIMRC_FILE "$HOME/.gvimrc"
291# endif
292#endif
293
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200294#ifndef USR_GVIMRC_FILE2
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100295# ifdef VMS
296# define USR_GVIMRC_FILE2 "sys$login:vimfiles/gvimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200297# else
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100298# define USR_GVIMRC_FILE2 "~/.vim/gvimrc"
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200299# endif
300#endif
301
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302#ifdef VMS
Bram Moolenaar22971aa2013-06-12 20:35:58 +0200303# ifndef USR_GVIMRC_FILE3
304# define USR_GVIMRC_FILE3 "sys$login:_gvimrc"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305# endif
306#endif
307
Bram Moolenaar8c08b5b2016-07-28 22:24:15 +0200308#ifndef VIM_DEFAULTS_FILE
309# define VIM_DEFAULTS_FILE "$VIMRUNTIME/defaults.vim"
310#endif
311
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312#ifndef EVIM_FILE
313# define EVIM_FILE "$VIMRUNTIME/evim.vim"
314#endif
315
316#ifdef FEAT_VIMINFO
317# ifndef VIMINFO_FILE
318# ifdef VMS
319# define VIMINFO_FILE "sys$login:.viminfo"
320# else
321# define VIMINFO_FILE "$HOME/.viminfo"
322# endif
323# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324# if !defined(VIMINFO_FILE2) && defined(VMS)
325# define VIMINFO_FILE2 "sys$login:_viminfo"
326# endif
327#endif
328
329#ifndef EXRC_FILE
330# define EXRC_FILE ".exrc"
331#endif
332
333#ifndef VIMRC_FILE
334# define VIMRC_FILE ".vimrc"
335#endif
336
337#ifdef FEAT_GUI
338# ifndef GVIMRC_FILE
339# define GVIMRC_FILE ".gvimrc"
340# endif
341#endif
342
343#ifndef SYNTAX_FNAME
344# define SYNTAX_FNAME "$VIMRUNTIME/syntax/%s.vim"
345#endif
346
347#ifndef DFLT_BDIR
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100348# ifdef VMS
349# define DFLT_BDIR "./,sys$login:,tmp:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100351# define DFLT_BDIR ".,~/tmp,~/" // default for 'backupdir'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352# endif
353#endif
354
355#ifndef DFLT_DIR
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100356# ifdef VMS
357# define DFLT_DIR "./,sys$login:,tmp:"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100359# define DFLT_DIR ".,~/tmp,/var/tmp,/tmp" // default for 'directory'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360# endif
361#endif
362
363#ifndef DFLT_VDIR
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100364# ifdef VMS
365# define DFLT_VDIR "sys$login:vimfiles/view"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100367# define DFLT_VDIR "$HOME/.vim/view" // default for 'viewdir'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368# endif
369#endif
370
371#define DFLT_ERRORFILE "errors.err"
372
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100373#ifndef DFLT_RUNTIMEPATH
374
375# ifdef VMS
376# define DFLT_RUNTIMEPATH "sys$login:vimfiles,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,sys$login:vimfiles/after"
377# define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378# else
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100379# ifdef RUNTIME_GLOBAL
380# ifdef RUNTIME_GLOBAL_AFTER
381# define DFLT_RUNTIMEPATH "~/.vim," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER ",~/.vim/after"
382# define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL_AFTER
383# else
384# define DFLT_RUNTIMEPATH "~/.vim," RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after,~/.vim/after"
385# define CLEAN_RUNTIMEPATH RUNTIME_GLOBAL ",$VIMRUNTIME," RUNTIME_GLOBAL "/after"
386# endif
387# else
388# define DFLT_RUNTIMEPATH "~/.vim,$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after,~/.vim/after"
389# define CLEAN_RUNTIMEPATH "$VIM/vimfiles,$VIMRUNTIME,$VIM/vimfiles/after"
390# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391# endif
Bram Moolenaarb3f74062020-02-26 16:16:53 +0100392
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393#endif
394
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100395#ifdef VMS
396# ifndef VAX
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100397# define VMS_TEMPNAM // to fix default .LIS extension
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398# endif
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100399# define TEMPNAME "TMP:v?XXXXXX.txt"
400# define TEMPNAMELEN 28
401#else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100402// Try several directories to put the temp files.
Bram Moolenaare7fedb62015-12-31 19:07:19 +0100403# define TEMPDIRNAMES "$TMPDIR", "/tmp", ".", "$HOME"
404# define TEMPNAMELEN 256
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405#endif
406
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100407// Special wildcards that need to be handled by the shell
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408#define SPECIAL_WILDCHAR "`'{"
409
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410/*
411 * Unix has plenty of memory, use large buffers
412 */
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100413#define CMDBUFFSIZE 1024 // size of the command processing buffer
Bram Moolenaar38f12a92008-06-20 16:07:02 +0000414
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100415// Use the system path length if it makes sense.
Bram Moolenaar38f12a92008-06-20 16:07:02 +0000416#if defined(PATH_MAX) && (PATH_MAX > 1000)
417# define MAXPATHL PATH_MAX
418#else
419# define MAXPATHL 1024
420#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100422#define CHECK_INODE // used when checking if a swap file already
423 // exists for a file
424#ifdef VMS // Use less memory because of older systems
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425# ifndef DFLT_MAXMEM
426# define DFLT_MAXMEM (2*1024)
427# endif
428# ifndef DFLT_MAXMEMTOT
429# define DFLT_MAXMEMTOT (5*1024)
430# endif
431#else
432# ifndef DFLT_MAXMEM
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100433# define DFLT_MAXMEM (5*1024) // use up to 5 Mbyte for a buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434# endif
435# ifndef DFLT_MAXMEMTOT
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100436# define DFLT_MAXMEMTOT (10*1024) // use up to 10 Mbyte for Vim
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437# endif
438#endif
439
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100440// memmove() is not present on all systems, use memmove, bcopy or memcpy.
441// Some systems have (void *) arguments, some (char *). If we use (char *) it
442// works for all
Bram Moolenaar52c0de12017-01-26 21:36:34 +0100443#if defined(USEMEMMOVE) || (!defined(USEBCOPY) && !defined(USEMEMCPY))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444# define mch_memmove(to, from, len) memmove((char *)(to), (char *)(from), len)
445#else
446# ifdef USEBCOPY
447# define mch_memmove(to, from, len) bcopy((char *)(from), (char *)(to), len)
448# else
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100449 // ifdef USEMEMCPY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450# define mch_memmove(to, from, len) memcpy((char *)(to), (char *)(from), len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451# endif
452#endif
453
454#ifndef PROTO
455# ifdef HAVE_RENAME
456# define mch_rename(src, dst) rename(src, dst)
457# else
Bram Moolenaard99df422016-01-29 23:20:40 +0100458int mch_rename(const char *src, const char *dest);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000459# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460# ifndef VMS
461# ifdef __MVS__
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100462 // on OS390 Unix getenv() doesn't return a pointer to persistent
463 // storage -> use __getenv()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464# define mch_getenv(x) (char_u *)__getenv((char *)(x))
465# else
466# define mch_getenv(x) (char_u *)getenv((char *)(x))
467# endif
468# define mch_setenv(name, val, x) setenv(name, val, x)
469# endif
470#endif
471
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100472// Note: Some systems need both string.h and strings.h (Savage). However,
473// some systems can't handle both, only use string.h in that case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474#ifdef HAVE_STRING_H
475# include <string.h>
476#endif
477#if defined(HAVE_STRINGS_H) && !defined(NO_STRINGS_WITH_STRING_H)
478# include <strings.h>
479#endif
480
481#if defined(HAVE_SETJMP_H)
482# include <setjmp.h>
483# ifdef HAVE_SIGSETJMP
484# define JMP_BUF sigjmp_buf
485# define SETJMP(x) sigsetjmp((x), 1)
486# define LONGJMP siglongjmp
487# else
488# define JMP_BUF jmp_buf
489# define SETJMP(x) setjmp(x)
490# define LONGJMP longjmp
491# endif
492#endif
493
Bram Moolenaarc41053062014-03-25 13:46:26 +0100494#ifndef HAVE_DUP
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100495# define HAVE_DUP // have dup()
Bram Moolenaarc41053062014-03-25 13:46:26 +0100496#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100497#define HAVE_ST_MODE // have stat.st_mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000498
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100499// We have three kinds of ACL support.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500#define HAVE_ACL (HAVE_POSIX_ACL || HAVE_SOLARIS_ACL || HAVE_AIX_ACL)