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

9 lines
157 B
C
Executable File

#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;
}