use fizz' suggestion on from ticket #534 on how to make platform.c more portable wrt header include order
This commit is contained in:
parent
2441a052b0
commit
d3d1263a84
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue