Remove some unused code.

This commit is contained in:
2021-03-14 18:50:14 +00:00
parent b1f7226cfa
commit 1fa25644d1
13 changed files with 11 additions and 48 deletions

View File

@@ -27,17 +27,7 @@ Contains 32-bit OS/2 code
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#define INCL_DOSMISC
#define INCL_DOSFILEMGR
#include <os2.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "../os2.h"
#include "include/consts.h"
#include "include/defs.h"
#include "../../include/defs.h"
void ExtendedAttributes(const char* path)
{ /* TODO: Implement */

View File

@@ -86,7 +86,7 @@ Copyright (C) 2011-2021 Natalia Portillo
#define __os2_chdir(path) DosSetCurrentDir(path)
#define __os2_mkdir(path) DosCreateDir(path, NULL)
#define __os2_delete(path) DosDelete(path);
#define __os2_delete(path) DosDelete(path)
#endif