ack/mach/minix/libsys/stat.c
1988-04-19 09:34:37 +00:00

11 lines
164 B
C

#include "lib.h"
PUBLIC int stat(name, buffer)
char *name;
char *buffer;
{
int n;
n = callm1(FS, STAT, len(name), 0, 0, name, buffer, NIL_PTR);
return(n);
}