Fix chdir declaration in DJGPP vs Watcom.

This commit is contained in:
2021-03-11 02:31:41 +00:00
parent a97bc69276
commit 138c55f887
14 changed files with 82 additions and 2 deletions

View File

@@ -38,6 +38,12 @@ Copyright (C) 2011-2021 Natalia Portillo
#include <stdlib.h>
#include <string.h>
#if defined(__WATCOM__)
#include <direct.h>
#elif defined(__DJGPP__)
#include <unistd.h>
#endif
#include "../include/consts.h"
#include "../include/defs.h"
#include "../include/dosos2.h"