1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00

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

View file

@ -22,12 +22,6 @@
* DEALINGS IN THE SOFTWARE. * DEALINGS IN THE SOFTWARE.
*****************************************************************************/ *****************************************************************************/
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef __BEOS__ #ifdef __BEOS__
#include <signal.h> #include <signal.h>
#include <fs_info.h> #include <fs_info.h>
@ -45,6 +39,12 @@
#include <pthread.h> #include <pthread.h>
#endif #endif
#include <assert.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h> #include <sys/types.h>
#include <dirent.h> #include <dirent.h>
#include <fcntl.h> #include <fcntl.h>