diff options
| author | Jakob Kaivo <jkk@ung.org> | 2020-08-16 18:37:10 -0400 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2020-08-16 18:37:10 -0400 |
| commit | c054c0e7fa09235b6ab79e1bebb2ebdc0bc0d00e (patch) | |
| tree | 4b2912dc94c76ecc46ce5628c8ff28ff969b49cf /src/dirent/struct_dirent.h | |
| parent | 801e08d471fa5d807063f918ce4cc724685e4604 (diff) | |
rename non-compiled files to *.h
Diffstat (limited to 'src/dirent/struct_dirent.h')
| -rw-r--r-- | src/dirent/struct_dirent.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/dirent/struct_dirent.h b/src/dirent/struct_dirent.h new file mode 100644 index 00000000..a6d4bb6c --- /dev/null +++ b/src/dirent/struct_dirent.h @@ -0,0 +1,14 @@ +#include <dirent.h> + +struct dirent { + #if (defined _XOPEN_SOURCE) + ino_t d_ino; + #else + unsigned long long int __padding; + #endif + char d_name[]; +}; + +/* +POSIX(1) +*/ |
