use fizz' suggestion on from ticket #534 on how to make platform.c more portable wrt header include order

This commit is contained in:
Charles Kerr
2007-12-07 19:25:54 +00:00
parent 2441a052b0
commit d3d1263a84
+6 -6
View File
@@ -22,12 +22,6 @@
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef __BEOS__
#include <signal.h>
#include <fs_info.h>
@@ -45,6 +39,12 @@
#include <pthread.h>
#endif
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <dirent.h>
#include <fcntl.h>