[Box Backup-commit] COMMIT r1640 - box/chris/general/lib/common
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Wed, 09 May 2007 11:33:04 +0100
Author: chris
Date: 2007-05-09 11:33:04 +0100 (Wed, 09 May 2007)
New Revision: 1640
Modified:
box/chris/general/lib/common/Test.h
Log:
Compile fix, thanks to Matt Brown (merges [1624])
Modified: box/chris/general/lib/common/Test.h
===================================================================
--- box/chris/general/lib/common/Test.h 2007-05-09 10:32:38 UTC (rev 1639)
+++ box/chris/general/lib/common/Test.h 2007-05-09 10:33:04 UTC (rev 1640)
@@ -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;