mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 08:29:54 +02:00
16 lines
181 B
C
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);
|
|
}
|