Subversion Repositories general

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1143 → Rev 1144

/rebootdaemon/trunk/rebootdaemon.c
23,6 → 23,7
#include <stdio.h>
#include <string.h>
#include <stdarg.h>
#include <ctype.h>
#include <errno.h>
#include <signal.h>
#include <unistd.h>
29,6 → 30,7
#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>
35,6 → 37,8
#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:
Added: svn:keywords
+Rev
\ No newline at end of property
/rebootdaemon/trunk/Makefile
1,2 → 1,10
rebootdaemon : rebootdaemon.c
SRCS=rebootdaemon.c
BIN=rebootdaemon
RES=$(BIN)
 
rebootdaemon: $(SRCS)
cc -Wall -o $(BIN) $(SRCS)
 
clean:
rm -f $(RES)