Luna/libc/include/bits/clockid.h

15 lines
209 B
C
Raw Normal View History

2023-01-07 10:21:53 +00:00
/* bits/clockid.h: The clockid_t type and its supported values. */
2023-01-06 23:21:08 +00:00
#ifndef _BITS_CLOCKID_H
#define _BITS_CLOCKID_H
typedef int clockid_t;
enum __clockid
{
CLOCK_REALTIME,
CLOCK_MONOTONIC
};
#endif