/* 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