Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
03695ace
Commit
03695ace
authored
Aug 22, 2000
by
Andrew Innes
Browse files
[USE_CRT_DLL]: Remove unnecessary extern, which
screws up dllimport attributes.
parent
3ec68006
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
src/callproc.c
src/callproc.c
+4
-0
src/lread.c
src/lread.c
+2
-0
src/strftime.c
src/strftime.c
+2
-0
No files found.
src/callproc.c
View file @
03695ace
...
...
@@ -24,7 +24,9 @@ Boston, MA 02111-1307, USA. */
#include <errno.h>
#include <stdio.h>
#ifndef USE_CRT_DLL
extern
int
errno
;
#endif
/* Define SIGCHLD as an alias for SIGCLD. */
...
...
@@ -88,8 +90,10 @@ extern int errno;
#ifdef VMS
extern
noshare
char
**
environ
;
#else
#ifndef USE_CRT_DLL
extern
char
**
environ
;
#endif
#endif
#ifdef HAVE_SETPGID
#if !defined (USG) || defined (BSD_PGRPS)
...
...
src/lread.c
View file @
03695ace
...
...
@@ -72,7 +72,9 @@ Boston, MA 02111-1307, USA. */
#define file_tell ftell
#endif
#ifndef USE_CRT_DLL
extern
int
errno
;
#endif
Lisp_Object
Qread_char
,
Qget_file_char
,
Qstandard_input
,
Qcurrent_load_list
;
Lisp_Object
Qvariable_documentation
,
Vvalues
,
Vstandard_input
,
Vafter_load_alist
;
...
...
src/strftime.c
View file @
03695ace
...
...
@@ -52,8 +52,10 @@
# endif
#endif
#if HAVE_TZNAME
#ifndef USE_CRT_DLL
extern
char
*
tzname
[];
#endif
#endif
/* Do multibyte processing if multibytes are supported, unless
multibyte sequences are safe in formats. Multibyte sequences are
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment