15 lines
209 B
C
15 lines
209 B
C
/* bits/clockid.h: The clockid_t type and its supported values. */
|
|
|
|
#ifndef _BITS_CLOCKID_H
|
|
#define _BITS_CLOCKID_H
|
|
|
|
typedef int clockid_t;
|
|
|
|
enum __clockid
|
|
{
|
|
CLOCK_REALTIME,
|
|
CLOCK_MONOTONIC
|
|
};
|
|
|
|
#endif
|