diff options
Diffstat (limited to 'src/dosfns.c')
| -rw-r--r-- | src/dosfns.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dosfns.c b/src/dosfns.c index 11d2258f614..0561a941162 100644 --- a/src/dosfns.c +++ b/src/dosfns.c | |||
| @@ -23,7 +23,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 23 | /* The entire file is within this conditional */ | 23 | /* The entire file is within this conditional */ |
| 24 | 24 | ||
| 25 | #include <stdio.h> | 25 | #include <stdio.h> |
| 26 | /* gettine and settime in dos.h clash with their namesakes from | ||
| 27 | gnulib, so we move out of our way the prototypes in dos.h. */ | ||
| 28 | #define gettime dos_h_gettime_ | ||
| 29 | #define settime dos_h_settime_ | ||
| 26 | #include <dos.h> | 30 | #include <dos.h> |
| 31 | #undef gettime | ||
| 32 | #undef settime | ||
| 27 | #include <setjmp.h> | 33 | #include <setjmp.h> |
| 28 | #include "lisp.h" | 34 | #include "lisp.h" |
| 29 | #include "character.h" | 35 | #include "character.h" |