12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef _OSDEP_H_
- #define _OSDEP_H_
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <sys/unistd.h>
- #define USE_EF_UT_TIME
- #define EB_L_AT_LEN 5
- #define EB_C_AT_LEN 5
- #define EB_AT_FL_NATURAL 0x01
- #define EB_AT_FL_BADBITS 0xfe
- #ifndef ZP_NEED_MEMCOMPR
- define ZP_NEED_MEMCOMPR
- #endif
- #define deletedir(d) rmdir(d);
- void setfiletype( const char *file, const char *type );
- #endif
|