mirror of
https://github.com/urbit/shrub.git
synced 2024-12-22 18:31:44 +03:00
8ce0600e00
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.
11 lines
253 B
Meson
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])
|