sad

simple audio daemon
git clone git://git.2f30.org/sad
Log | Files | Refs | LICENSE

compat.h (275B)


      1 #undef reallocarray
      2 void *reallocarray(void *, size_t, size_t);
      3 
      4 #undef strlcat
      5 size_t strlcat(char *, const char *, size_t);
      6 #undef strlcpy
      7 size_t strlcpy(char *, const char *, size_t);
      8 
      9 #undef strtonum
     10 long long strtonum(const char *, long long, long long, const char **);