mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
19 lines
245 B
C
19 lines
245 B
C
|
/* Basic getpid tests.
|
||
|
# mach: bfin
|
||
|
# cc: -msim
|
||
|
*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
pid_t pid = getpid();
|
||
|
if (pid < 0) {
|
||
|
perror("getpid failed");
|
||
|
return 1;
|
||
|
}
|
||
|
puts("pass");
|
||
|
return 0;
|
||
|
}
|