*** empty log message ***
This commit is contained in:
parent
309678b6f4
commit
0d538f2094
2 changed files with 4 additions and 2 deletions
|
@ -33,10 +33,11 @@ CFILES := $(shell ls *.c)
|
|||
OFILES := $(patsubst %.c,%.o,$(CFILES))
|
||||
DESTFILE=libnazgul.a
|
||||
|
||||
INCLUDES=-I /usr/lib/ -I /usr/local/lib/
|
||||
DEFINES:=
|
||||
|
||||
ifeq "SunOS" "${OS}"
|
||||
DEFINES:=-D_NZG_REALFILEID
|
||||
DEFINES:=-D_NZG_REALFILEID -D_NZG_SUNOS
|
||||
endif
|
||||
|
||||
ifeq "HP-UX" "${OS}"
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
int main(void) {
|
||||
// msgSpace mS=0;
|
||||
|
||||
pid_t pid;
|
||||
msgSpaceId testId;
|
||||
msgSpace * mSPAC;
|
||||
msgPool poolInfos[3];
|
||||
|
@ -32,7 +33,7 @@ int main(void) {
|
|||
exit(0);
|
||||
}
|
||||
|
||||
pid_t pid=fork();
|
||||
pid=fork();
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue