From 821eb5ff9ed60d4b1c7a50ebf406f22bc0da9bd4 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 21 Apr 2024 18:39:36 +0200 Subject: LibC: Add different isX() functions --- include/dirent.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'include/dirent.h') diff --git a/include/dirent.h b/include/dirent.h index 153d36a..fd2eace 100644 --- a/include/dirent.h +++ b/include/dirent.h @@ -9,9 +9,6 @@ #include #endif -#define S_ISREG(_m) (_m & (STAT_REG)) -#define S_ISDIR(_m) (_m & (STAT_DIR)) - struct dirent { ino_t d_ino; // File serial number. char d_name[PATH_MAX]; // Filename string of entry. -- cgit v1.2.3