9 lines
134 B
C
9 lines
134 B
C
#include <stdio.h>
|
|
#include <sys/resource.h>
|
|
|
|
int main(void) {
|
|
printf("PRIO_PROCESS: %d", PRIO_PROCESS);
|
|
return 0;
|
|
}
|
|
|