Define S_IFLNK and S_IFSOCK for djgpp (Christophe)

edge.strict_endians
szaka 2006-01-29 14:07:45 +00:00
parent 0130863e72
commit 770aded28d
1 changed files with 13 additions and 0 deletions

View File

@ -38,6 +38,19 @@
#include <sys/stat.h>
#endif
#ifdef HAVE_SYS_SYSMACROS_H
#include <sys/sysmacros.h>
#endif
#ifdef DJGPP
#ifndef S_IFLNK
#define S_IFLNK 0xa000
#endif
#ifndef S_IFSOCK
#define S_IFSOCK 0xc000
#endif
#endif
#include "types.h"
#include "debug.h"
#include "attrib.h"