diff options
Diffstat (limited to 'test/fchown.c')
-rw-r--r-- | test/fchown.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/fchown.c b/test/fchown.c new file mode 100644 index 0000000..adb3982 --- /dev/null +++ b/test/fchown.c @@ -0,0 +1,12 @@ +/* + * Items: fchown( + * Standardized-By: SuS + * Not-Detected-by: gcc-4.4.3 + Linux + */ + +#include <unistd.h> + +main(int arg, char **argv) +{ + (void)fchown(0, 0); +} |