Mercurial > hg > xemacs-beta
comparison src/sysdep.c @ 854:1d8fb2eee1bb
[xemacs-hg @ 2002-05-28 16:06:58 by didierv]
Fix header inclusion order
author | didierv |
---|---|
date | Tue, 28 May 2002 16:07:03 +0000 |
parents | 2b6fa2618f76 |
children | 84762348c6f9 |
comparison
equal
deleted
inserted
replaced
853:2b6fa2618f76 | 854:1d8fb2eee1bb |
---|---|
65 #include "syswindows.h" | 65 #include "syswindows.h" |
66 #endif | 66 #endif |
67 | 67 |
68 #include "sysdir.h" | 68 #include "sysdir.h" |
69 #include "sysfile.h" | 69 #include "sysfile.h" |
70 #include "syssignal.h" /* Always include before sysproc.h and systty.h | |
71 -- didier */ | |
70 #include "sysproc.h" | 72 #include "sysproc.h" |
71 #include "syspwd.h" | 73 #include "syspwd.h" |
72 #include "syssignal.h" | |
73 #include "syssignal.h" | |
74 #include "systime.h" | 74 #include "systime.h" |
75 #include "systty.h" | 75 #include "systty.h" |
76 #include "syswait.h" | 76 #include "syswait.h" |
77 | 77 |
78 #include <setjmp.h> | 78 #include <setjmp.h> |
579 /* Use our buffer's default directory for the subshell. */ | 579 /* Use our buffer's default directory for the subshell. */ |
580 | 580 |
581 /* Note: These calls are spread out to insure that the return values | 581 /* Note: These calls are spread out to insure that the return values |
582 of the calls (which may be newly-created strings) are properly | 582 of the calls (which may be newly-created strings) are properly |
583 GC-protected. */ | 583 GC-protected. */ |
584 | 584 |
585 GCPRO1 (dir); | 585 GCPRO1 (dir); |
586 | 586 |
587 dir = current_buffer->directory; | 587 dir = current_buffer->directory; |
588 /* If the current dir has no terminating slash, we'll get undesirable | 588 /* If the current dir has no terminating slash, we'll get undesirable |
589 results, so put the slash back. */ | 589 results, so put the slash back. */ |
2189 #ifdef NEED_STARTS | 2189 #ifdef NEED_STARTS |
2190 void *data_start = start_of_data (); | 2190 void *data_start = start_of_data (); |
2191 #else | 2191 #else |
2192 void *data_start = minimum_address_seen; | 2192 void *data_start = minimum_address_seen; |
2193 #endif | 2193 #endif |
2194 | 2194 |
2195 #if !defined (WIN32_NATIVE) && !defined (CYGWIN) | 2195 #if !defined (WIN32_NATIVE) && !defined (CYGWIN) |
2196 void *data_end = sbrk (0); | 2196 void *data_end = sbrk (0); |
2197 #else | 2197 #else |
2198 void *data_end = maximum_address_seen; | 2198 void *data_end = maximum_address_seen; |
2199 #endif | 2199 #endif |