diff options
| author | Roland McGrath | 1993-09-10 05:02:57 +0000 |
|---|---|---|
| committer | Roland McGrath | 1993-09-10 05:02:57 +0000 |
| commit | 60fa73fdf2c8b8fc9fae23321c56be906672ed75 (patch) | |
| tree | 538dd6150bf55d6885bb96fb70881886183782b2 | |
| parent | 6a794f078cac2a7c44d47c5eb0fc7dbb6d6023ee (diff) | |
| download | emacs-60fa73fdf2c8b8fc9fae23321c56be906672ed75.tar.gz emacs-60fa73fdf2c8b8fc9fae23321c56be906672ed75.zip | |
Initial revision
| -rw-r--r-- | src/s/netbsd.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/s/netbsd.h b/src/s/netbsd.h new file mode 100644 index 00000000000..7f5f7451827 --- /dev/null +++ b/src/s/netbsd.h | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* s/ file for netbsd system. */ | ||
| 2 | |||
| 3 | /* Get most of the stuff from bsd4.3 */ | ||
| 4 | #include "bsd4-3.h" | ||
| 5 | |||
| 6 | #undef SYSTEM_TYPE | ||
| 7 | #define SYSTEM_TYPE "netbsd" | ||
| 8 | |||
| 9 | #undef KERNEL_FILE | ||
| 10 | #define KERNEL_FILE "/netbsd" | ||
| 11 | |||
| 12 | #undef LDAV_SYMBOL | ||
| 13 | #define LDAV_SYMBOL "_averunnable" | ||
| 14 | |||
| 15 | #define SIGNALS_VIA_CHARACTERS | ||
| 16 | |||
| 17 | #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base) | ||
| 18 | |||
| 19 | #define A_TEXT_OFFSET(x) (sizeof (struct exec)) | ||
| 20 | #define A_TEXT_SEEK(hdr) (N_TXTOFF(hdr) + A_TEXT_OFFSET(hdr)) | ||
| 21 | |||
| 22 | #define HAVE_SETSID | ||
| 23 | |||
| 24 | #define LIBS_DEBUG | ||
| 25 | #define LIBS_SYSTEM -lutil | ||
| 26 | |||
| 27 | #define HAVE_GETLOADAVG | ||
| 28 | |||
| 29 | /* For mem-limits.h. */ | ||
| 30 | #define BSD4_2 | ||