Move platform specific to sys/

Move unix/ and win/ to sys/, so that we can use android/ for android
headers without confusion.
master
Romain Vimont 8 years ago
parent a919944372
commit 95591d2938

@ -12,9 +12,9 @@ src = [
]
if host_machine.system() == 'windows'
src += [ 'src/win/command.c' ]
src += [ 'src/sys/win/command.c' ]
else
src += [ 'src/unix/command.c' ]
src += [ 'src/sys/unix/command.c' ]
endif
dependencies = [

@ -1,4 +1,4 @@
#include "../command.h"
#include "../../command.h"
#include <signal.h>
#include <sys/types.h>

@ -1,4 +1,4 @@
#include "../command.h"
#include "../../command.h"
#include <stdio.h>
#include "../strutil.h"
Loading…
Cancel
Save