|
Revision 4220, 1.7 kB
(checked in by miyoshi, 8 months ago)
|
Sync up with Emacs22.2.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
#include "bsd4-3.h" |
|---|
| 25 |
|
|---|
| 26 |
#ifndef __bsdi__ |
|---|
| 27 |
#define __bsdi__ 1 |
|---|
| 28 |
#endif |
|---|
| 29 |
|
|---|
| 30 |
#define DECLARE_GETPWUID_WITH_UID_T |
|---|
| 31 |
|
|---|
| 32 |
#define SIGNALS_VIA_CHARACTERS |
|---|
| 33 |
|
|---|
| 34 |
#define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base) |
|---|
| 35 |
#define A_TEXT_OFFSET(x) (sizeof (struct exec)) |
|---|
| 36 |
#define A_TEXT_SEEK(hdr) (N_TXTOFF(hdr) + A_TEXT_OFFSET(hdr)) |
|---|
| 37 |
|
|---|
| 38 |
#define LIBS_DEBUG |
|---|
| 39 |
#define LIB_X11_LIB -L/usr/X11/lib -lX11 |
|---|
| 40 |
#define LIBS_SYSTEM -lutil -lkvm -lcompat |
|---|
| 41 |
|
|---|
| 42 |
#define HAVE_GETLOADAVG 1 |
|---|
| 43 |
|
|---|
| 44 |
#undef BSD_PGRPS |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
#define TABDLY OXTABS |
|---|
| 49 |
#define TAB3 OXTABS |
|---|
| 50 |
|
|---|
| 51 |
#define SYSV_SYSTEM_DIR |
|---|
| 52 |
|
|---|
| 53 |
#define HAVE_TERMIOS |
|---|
| 54 |
#define NO_TERMIO |
|---|
| 55 |
|
|---|
| 56 |
#define WAITTYPE int |
|---|
| 57 |
|
|---|
| 58 |
#ifdef emacs |
|---|
| 59 |
#include <sys/wait.h> |
|---|
| 60 |
#endif |
|---|
| 61 |
#define WRETCODE(w) WEXITSTATUS(w) |
|---|
| 62 |
#ifndef WCOREDUMP |
|---|
| 63 |
#define WCOREDUMP(w) ((w) & 0200) |
|---|
| 64 |
#endif |
|---|
| 65 |
|
|---|
| 66 |
#define GETPGRP_NO_ARG 1 |
|---|