13 lines
141 B
C
13 lines
141 B
C
|
#ifndef _BITS_CLOCKID_H
|
||
|
#define _BITS_CLOCKID_H
|
||
|
|
||
|
typedef int clockid_t;
|
||
|
|
||
|
enum __clockid
|
||
|
{
|
||
|
CLOCK_REALTIME,
|
||
|
CLOCK_MONOTONIC
|
||
|
};
|
||
|
|
||
|
#endif
|