Subversion Repositories general

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1144 → Rev 1143

/rebootdaemon/trunk/rebootdaemon.c
23,7 → 23,6
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
#include <errno.h>
#include <signal.h>
#include <unistd.h>
30,7 → 29,6
#include <netdb.h>
#include <syslog.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/reboot.h>
37,8 → 35,6
#include <netinet/in.h>
#include <arpa/inet.h>
 
#define REVISION "$Rev$"
 
#define DEFAULT_PORT 19
#define DEFAULT_CFG_FILE "/etc/rebootdaemon.conf"
#define CMDSIZE 4096
Property changes:
Deleted: svn:keywords
-Rev
\ No newline at end of property
/rebootdaemon/trunk/Makefile
1,10 → 1,2
SRCS=rebootdaemon.c
BIN=rebootdaemon
RES=$(BIN)
rebootdaemon : rebootdaemon.c
 
rebootdaemon: $(SRCS)
cc -Wall -o $(BIN) $(SRCS)
 
clean:
rm -f $(RES)