mirror of
https://github.com/NishiOwO/fvwm1.git
synced 2025-04-21 08:44:39 +00:00
16 lines
204 B
C
16 lines
204 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
|
|
#include "../configure.h"
|
|
|
|
|
|
int GetFdWidth(void)
|
|
{
|
|
#ifdef HAVE_SYSCONF
|
|
return sysconf(_SC_OPEN_MAX);
|
|
#else
|
|
return getdtablesize();
|
|
#endif
|
|
}
|