50eab4369d
Create stubs for signal.h
10 lines
125 B
C
10 lines
125 B
C
#ifndef _BITS_TIMESPEC_H
|
|
#define _BITS_TIMESPEC_H
|
|
|
|
typedef struct {
|
|
time_t tv_sec;
|
|
long tv_nsec;
|
|
} timespec;
|
|
|
|
#endif
|