Remove preprocessor guards by OS. Project should now only include the needed files.

This commit is contained in:
2021-03-14 14:38:51 +00:00
parent 9aa53cad57
commit 4b75cd3e71
95 changed files with 0 additions and 402 deletions

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include "../include/defs.h"
#if defined(__linux__) || defined(__LINUX__) || defined(__gnu_linux)
@@ -41,5 +39,3 @@ void FileAttributes(const char* path)
LinuxFileAttributes(path);
#endif
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
@@ -82,5 +80,3 @@ void DeleteFiles(const char* path)
unlink(filename);
}
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stdio.h>
#include <string.h>
@@ -85,5 +83,3 @@ void DirectoryDepth(const char* path)
printf("\tCreated %ld levels of directory hierarchy\n", pos);
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stdio.h>
#include <string.h>
@@ -95,5 +93,3 @@ void Filenames(const char* path)
printf("\tFile name = \"%s\", rc = %d, wRc = %d, cRc = %d\n", filenames[pos], rc, wRc, cRc);
}
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
@@ -84,5 +82,3 @@ void MillionFiles(const char* path)
printf("\tCreated %ld files\n", pos);
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
@@ -330,5 +328,3 @@ void Fragmentation(const char* path, size_t clusterSize)
wRc,
cRc);
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
@@ -88,5 +86,3 @@ void Links(const char* path)
if(ret) { printf("Error %d creating symbolic link.\n", errno); }
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stdio.h>
#include <sys/utsname.h>
@@ -54,5 +52,3 @@ void GetOsInfo()
printf("\tVersion: %s\n", buf.version);
printf("\tMachine: %s\n", buf.machine);
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stdio.h>
#include <sys/stat.h>
@@ -89,5 +87,3 @@ void FilePermissions(const char* path)
printf("\t%s: name = \"%s\", rc = %d, cRc = %d\n", unix_perms[i].description, unix_perms[i].filename, rc, cRc);
}
}
#endif

View File

@@ -27,13 +27,9 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include "../include/defs.h"
void ResourceFork(const char* path)
{
// Not supported
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include "../include/defs.h"
#if defined(__linux__) || defined(__LINUX__) || defined(__gnu_linux)
@@ -41,5 +39,3 @@ void Sparse(const char* path)
LinuxSparse(path);
#endif
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
@@ -316,5 +314,3 @@ void Timestamps(const char* path)
}
printf("\tFile name = \"%s\", rc = %d, wRc = %d, cRc = %d, tRc = %d\n", "LESSMTIME", rc, wRc, cRc, tRc);
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include <errno.h>
#include <stddef.h>
#include <stdio.h>
@@ -221,5 +219,3 @@ void GetVolumeInfo(const char* path, size_t* clusterSize)
*clusterSize = buf.f_bsize;
}
#endif

View File

@@ -27,8 +27,6 @@ Contains common implementations for UNIX family and compatibles
Copyright (C) 2011-2021 Natalia Portillo
*****************************************************************************/
#if defined(unix) || defined(UNIX) || defined(__unix) || defined(__unix__) || defined(__UNIX__)
#include "../include/defs.h"
#if defined(__linux__) || defined(__LINUX__) || defined(__gnu_linux)
@@ -41,5 +39,3 @@ void ExtendedAttributes(const char* path)
LinuxExtendedAttributes(path);
#endif
}
#endif