diff options
| author | Richard M. Stallman | 1994-05-19 23:32:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-19 23:32:48 +0000 |
| commit | eb0995ee10c8596c871ff69e63871eea449c5887 (patch) | |
| tree | 0dc5da4f95909cbc33014848f1b13eaf4e5b0aa5 /src | |
| parent | cbd4bc1b50e57edb950027d194a11409b10f5e94 (diff) | |
| download | emacs-eb0995ee10c8596c871ff69e63871eea449c5887.tar.gz emacs-eb0995ee10c8596c871ff69e63871eea449c5887.zip | |
(EXTRA_INITIALIZE): Define here.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/isc3-0.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/s/isc3-0.h b/src/s/isc3-0.h index 1785096236c..c7527b659b8 100644 --- a/src/s/isc3-0.h +++ b/src/s/isc3-0.h | |||
| @@ -29,3 +29,7 @@ | |||
| 29 | /* It is safe to have no parens around the args in the safe_bcopy call, | 29 | /* It is safe to have no parens around the args in the safe_bcopy call, |
| 30 | and parens would screw up the prototype decl for memmove. */ | 30 | and parens would screw up the prototype decl for memmove. */ |
| 31 | #define memmove(d, s, n) safe_bcopy (s, d, n) | 31 | #define memmove(d, s, n) safe_bcopy (s, d, n) |
| 32 | |||
| 33 | /* This works around a bug in ISC 4.0 and 3.0; it fails | ||
| 34 | to clear the "POSIX process" flag on an exec. */ | ||
| 35 | #define EXTRA_INITIALIZE __setostype (0) | ||