root/linuxism.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #pragma once
   2 
   3 #ifndef __linux__
   4 # if defined(__unix__) || defined(__unix) || \
   5         (defined(__APPLE__) && defined(__MACH__))
   6 #  include <limits.h>
   7 # endif
   8 # ifndef PATH_MAX
   9 #  ifndef _POSIX_PATH_MAX
  10 #   define PATH_MAX 256
  11 #  else
  12 #   define PATH_MAX _POSIX_PATH_MAX
  13 #  endif
  14 # endif
  15 #else
  16 # ifndef PATH_MAX
  17 #  include <linux/limits.h>
  18 # endif
  19 #endif

/* [previous][next][first][last][top][bottom][index][help] */