summaryrefslogtreecommitdiff
path: root/include/sys/param.h
AgeCommit message (Collapse)AuthorLines
2012-05-10fix missing parens in bit op macros (param.h)Rich Felker-1/+1
2012-05-10and another bug in setbit, etc. macros..Rich Felker-1/+1
2012-05-10fix typo in sys/param.h that broke setbit, etc. macrosRich Felker-1/+1
this is all junk, but some programs use it.
2012-04-18legacy junk compatibility grab-bagRich Felker-7/+22
- add the rest of the junk traditionally in sys/param.h - add prototypes for some nonstandard functions - add _GNU_SOURCE to their source files so the compiler can check proto
2012-01-24add MIN/MAX macros to sys/param.hRich Felker-0/+5
this is a nonstandard junk header anyway, so just do what apps expect..
2011-02-20make sys/param.h not depend on PATH_MAX and NAME_MAXRich Felker-2/+2
this is a nonstandard header used only by backwards programs, but for some reason it's extremely popular. the recent namespace cleanup fixes broke it, because PATH_MAX and NAME_MAX will not be defined unless an approriate feature test macro has been defined. moreover, it's too late to just #define _GNU_SOURCE in param.h, since limits.h may have already been included. let's just hard-code standard values and be done with it.
2011-02-12initial check-in, version 0.5.0v0.5.0Rich Felker-0/+15