Align
Space Here
| First row |
| Second row |
| Third row |
| Fourth row |
| Fifth row |
pid_t getpid(void)
{
printf("Hello, world!\n");
}
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
pid_t getpid(void)
{
printf("Hello, world!\n");
return syscall(SYS_getpid);
}