cosmopolitan/libc/calls/struct/sigval.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
299 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGVAL_H_
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGVAL_H_
COSMOPOLITAN_C_START_
2020-06-15 14:18:57 +00:00
union sigval {
int32_t sival_int;
void *sival_ptr;
};
int sigqueue(int, int, const union sigval);
COSMOPOLITAN_C_END_
2020-06-15 14:18:57 +00:00
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_SIGVAL_H_ */