comparison src/callproc.c @ 51403:d30115b64d58

Use HAVE_FCNTL_H, not USG5. (syms_of_callproc) <process-environment>: Doc fix.
author Dave Love <fx@gnu.org>
date Mon, 02 Jun 2003 18:46:55 +0000
parents 54c727f3404e
children 695cf19ef79e
comparison
equal deleted inserted replaced
51402:cc6e47eeb0a8 51403:d30115b64d58
40 #ifdef HAVE_UNISTD_H 40 #ifdef HAVE_UNISTD_H
41 #include <unistd.h> 41 #include <unistd.h>
42 #endif 42 #endif
43 43
44 #include <sys/file.h> 44 #include <sys/file.h>
45 #ifdef USG5 45 #ifdef HAVE_FCNTL_H
46 #define INCLUDED_FCNTL 46 #define INCLUDED_FCNTL
47 #include <fcntl.h> 47 #include <fcntl.h>
48 #endif 48 #endif
49 49
50 #ifdef WINDOWSNT 50 #ifdef WINDOWSNT
1670 doc: /* List of environment variables for subprocesses to inherit. 1670 doc: /* List of environment variables for subprocesses to inherit.
1671 Each element should be a string of the form ENVVARNAME=VALUE. 1671 Each element should be a string of the form ENVVARNAME=VALUE.
1672 If multiple entries define the same variable, the first one always 1672 If multiple entries define the same variable, the first one always
1673 takes precedence. 1673 takes precedence.
1674 The environment which Emacs inherits is placed in this variable 1674 The environment which Emacs inherits is placed in this variable
1675 when Emacs starts. */); 1675 when Emacs starts.
1676 Non-ASCII characters are encoded according to the initial value of
1677 `locale-coding-system', i.e. the elements must normally be decoded for use.
1678 See `setenv' and `getenv'. */);
1676 1679
1677 #ifndef VMS 1680 #ifndef VMS
1678 defsubr (&Scall_process); 1681 defsubr (&Scall_process);
1679 defsubr (&Sgetenv_internal); 1682 defsubr (&Sgetenv_internal);
1680 #endif 1683 #endif