mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
[USE_CRT_DLL]: Remove unnecessary extern, which screws
up dllimport attributes.
This commit is contained in:
parent
1f9c3929c5
commit
f12ef5ebfd
3 changed files with 7 additions and 0 deletions
|
|
@ -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));
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue