Move platform specific to sys/

Move unix/ and win/ to sys/, so that we can use android/ for android
headers without confusion.
This commit is contained in:
Romain Vimont 2017-12-14 17:22:43 +01:00
parent a919944372
commit 95591d2938
3 changed files with 4 additions and 4 deletions

View file

@ -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 = [

View file

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

View file

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