SmartAudio/package/avs/libsensory/files/wrapper/chk/fdelt_chk.c

9 lines
157 B
C
Raw Permalink Normal View History

2018-07-13 01:31:50 +00:00
#define _GNU_SOURCE
#include <sys/select.h>
#include "fortify.h"
long __fdelt_chk(long d)
{
if(0 < d || d >= FD_SETSIZE) __chk_fail();
return d/NFDBITS;
}