shrub/meson.build
Jōshin 8ce0600e00 Simplify by using stdio
Their read loop is probably better anyway. This also sets CLOEXEC on the
opened file, since who knows.

We can do this in the getrandom case since on small reads (len <= 256),
getrandom doesn't fail with EINTR.
2019-01-02 14:37:56 -08:00

11 lines
253 B
Meson

project('libent', 'c', version: '0.1.1', license: 'MIT')
inc = include_directories('include')
subdir('include')
subdir('src')
ent_sample = executable('sample',
['sample.c'],
dependencies: [libent_dep])