strace/tests/times-fail.c
Dmitry V. Levin 184e94ba05 Fix a few spacing style issues
Reported by kernel's checkpatch.pl script.
2017-06-17 22:54:08 +00:00

16 lines
251 B
C

#include "tests.h"
#include <assert.h>
#include <stdio.h>
#include <unistd.h>
#include <asm/unistd.h>
int
main(void)
{
assert(syscall(__NR_times, 0x42) == -1);
printf("times(0x42) = -1 EFAULT (%m)\n");
puts("+++ exited with 0 +++");
return 0;
}