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
f12ef5eb
Commit
f12ef5eb
authored
Aug 22, 2000
by
Andrew Innes
Browse files
[USE_CRT_DLL]: Remove unnecessary extern, which screws
up dllimport attributes.
parent
1f9c3929
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
src/editfns.c
src/editfns.c
+3
-0
src/fileio.c
src/fileio.c
+2
-0
src/floatfns.c
src/floatfns.c
+2
-0
No files found.
src/editfns.c
View file @
f12ef5eb
...
...
@@ -49,7 +49,10 @@ Boston, MA 02111-1307, USA. */
#define NULL 0
#endif
#ifndef USE_CRT_DLL
extern
char
**
environ
;
#endif
extern
Lisp_Object
make_time
P_
((
time_t
));
extern
size_t
emacs_strftimeu
P_
((
char
*
,
size_t
,
const
char
*
,
const
struct
tm
*
,
int
));
...
...
src/fileio.c
View file @
f12ef5eb
...
...
@@ -65,8 +65,10 @@ Boston, MA 02111-1307, USA. */
#include <errno.h>
#ifndef vax11c
#ifndef USE_CRT_DLL
extern int errno;
#endif
#endif
#ifdef APOLLO
#include <sys/time.h>
...
...
src/floatfns.c
View file @
f12ef5eb
...
...
@@ -107,8 +107,10 @@ extern double logb ();
#ifdef FLOAT_CHECK_ERRNO
# include <errno.h>
#ifndef USE_CRT_DLL
extern
int
errno
;
#endif
#endif
/* Avoid traps on VMS from sinh and cosh.
All the other functions set errno instead. */
...
...
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