[Box Backup-commit] COMMIT r1624 - box/chris/merge/lib/common
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Wed, 02 May 2007 11:24:45 +0100
Author: chris
Date: 2007-05-02 11:24:45 +0100 (Wed, 02 May 2007)
New Revision: 1624
Modified:
box/chris/merge/lib/common/Test.h
Log:
Compile fix, thanks to Matt Brown (refs #3)
Modified: box/chris/merge/lib/common/Test.h
===================================================================
--- box/chris/merge/lib/common/Test.h 2007-04-29 21:31:14 UTC (rev 1623)
+++ box/chris/merge/lib/common/Test.h 2007-05-02 10:24:45 UTC (rev 1624)
@@ -10,16 +10,18 @@
#ifndef TEST__H
#define TEST__H
-#include <sys/types.h>
-#include <sys/stat.h>
+#include <errno.h>
+#include <signal.h>
+#include <stdio.h>
#include <stdlib.h>
-#include <signal.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
-#include <stdio.h>
#include <string>
extern int failures;