Fix include paths for OS/2.

This commit is contained in:
2021-03-14 18:51:47 +00:00
parent 7c5f015623
commit 6c75daa1ae
15 changed files with 28 additions and 28 deletions

View File

@@ -35,8 +35,8 @@ Copyright (C) 2011-2021 Natalia Portillo
#include <stdlib.h>
#include <string.h>
#include "include/consts.h"
#include "include/defs.h"
#include "../include/consts.h"
#include "../include/defs.h"
#include "os2.h"
void DirectoryDepth(const char* path)
@@ -44,7 +44,7 @@ void DirectoryDepth(const char* path)
char drivePath[4];
APIRET rc = 0;
char filename[9];
long pos = 2;
int pos = 2;
drivePath[0] = path[0];
drivePath[1] = ':';