Files
retrobsd/sys/include/glob.h
2014-04-09 14:27:18 +01:00

13 lines
164 B
C

#ifndef _GLOB_H
#define _GLOB_H
#ifdef KERNEL
extern void rdglob();
extern void wrglob();
#else
extern int rdglob(int);
extern int wrglob(int,int);
#endif
#endif