]> git.pld-linux.org Git - packages/klibc.git/commitdiff
- missed DT_* defs added.
authorPaweł Sikora <pluto@pld-linux.org>
Sun, 12 Dec 2004 20:45:07 +0000 (20:45 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    klibc-dirent.patch -> 1.4

klibc-dirent.patch

index 4e704205693214d9ffc97dd850b8599cb2b135da..452e23cda3c8bb9cd39b81e5a5a02ee97742abcf 100644 (file)
                if (strlen(d->d_name) + 2 > rest)
                        continue;
                switch (d->d_type) {
+--- klibc-0.193/include/sys/dirent.h.orig      2004-06-08 07:32:48.000000000 +0200
++++ klibc-0.193/include/sys/dirent.h   2004-12-12 21:42:06.398807280 +0100
+@@ -18,4 +18,27 @@
+ __extern int getdents(unsigned int, struct dirent *, unsigned int);
++/* File types for `d_type'.  */
++enum
++  {
++    DT_UNKNOWN = 0,
++# define DT_UNKNOWN   DT_UNKNOWN
++    DT_FIFO = 1,
++# define DT_FIFO      DT_FIFO
++    DT_CHR = 2,
++# define DT_CHR               DT_CHR
++    DT_DIR = 4,
++# define DT_DIR               DT_DIR
++    DT_BLK = 6,
++# define DT_BLK               DT_BLK
++    DT_REG = 8,
++# define DT_REG               DT_REG
++    DT_LNK = 10,
++# define DT_LNK               DT_LNK
++    DT_SOCK = 12,
++# define DT_SOCK      DT_SOCK
++    DT_WHT = 14
++# define DT_WHT               DT_WHT
++  };
++
+ #endif /* _SYS_DIRENT_H */
This page took 0.377923 seconds and 4 git commands to generate.