mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
16 lines
308 B
C
16 lines
308 B
C
/*
|
|
* sys/resource.h
|
|
*/
|
|
|
|
#ifndef _SYS_RESOURCE_H
|
|
#define _SYS_RESOURCE_H
|
|
|
|
#include <klibc/extern.h>
|
|
#include <sys/types.h> /* MUST be included before linux/resource.h */
|
|
#include <linux/resource.h>
|
|
|
|
__extern int getpriority(int, int);
|
|
__extern int setpriority(int, int, int);
|
|
|
|
#endif /* _SYS_RESOURCE_H */
|