Mercurial > hg > xemacs-beta
comparison src/sysdep.h @ 4029:5bb998bf84bd
[xemacs-hg @ 2007-06-22 17:26:20 by stephent]
Fix C++ build per <87sl8j51tc.fsf@uwakimon.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Fri, 22 Jun 2007 17:26:22 +0000 |
parents | ba24fcdb4cfe |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
4028:f386b9b92417 | 4029:5bb998bf84bd |
---|---|
23 | 23 |
24 #ifndef INCLUDED_sysdep_h_ | 24 #ifndef INCLUDED_sysdep_h_ |
25 #define INCLUDED_sysdep_h_ | 25 #define INCLUDED_sysdep_h_ |
26 | 26 |
27 #include <setjmp.h> | 27 #include <setjmp.h> |
28 | |
29 #ifndef WIN32_NATIVE | |
30 extern char **environ; | |
31 #endif | |
32 | 28 |
33 #ifdef PDUMP | 29 #ifdef PDUMP |
34 int pdump_read_file (char **pdump_start_pos, size_t *pdump_length); | 30 int pdump_read_file (char **pdump_start_pos, size_t *pdump_length); |
35 #endif | 31 #endif |
36 | 32 |
65 | 61 |
66 void request_sigio (void); | 62 void request_sigio (void); |
67 void unrequest_sigio (void); | 63 void unrequest_sigio (void); |
68 | 64 |
69 BEGIN_C_DECLS | 65 BEGIN_C_DECLS |
66 | |
67 #ifndef WIN32_NATIVE | |
68 extern char **environ; | |
69 #endif | |
70 | 70 |
71 void stop_interrupts (void); | 71 void stop_interrupts (void); |
72 void start_interrupts (void); | 72 void start_interrupts (void); |
73 MODULE_API void slow_down_interrupts (void); | 73 MODULE_API void slow_down_interrupts (void); |
74 MODULE_API void speed_up_interrupts (void); | 74 MODULE_API void speed_up_interrupts (void); |