Files
bash/builtins/psize-posix.c
T
2011-12-03 12:52:47 -05:00

16 lines
181 B
C

#include <stdio.h>
#include <unistd.h>
main(c, v)
int c;
char **v;
{
char *p;
long l;
p = v[1] ? v[1] : "/";
l = pathconf (p, _PC_PIPE_BUF);
printf ("%ld\n", l);
exit(0);
}