From: Rich Felker Date: Mon, 26 Nov 2012 17:05:33 +0000 (-0500) Subject: fix missing limits when only _BSD_SOURCE is defined X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=56c6943efed41adad6b3c11b2992628a5b0f1d27;hp=56c6943efed41adad6b3c11b2992628a5b0f1d27;p=musl fix missing limits when only _BSD_SOURCE is defined the missing check did not affect the default profile, since it has both _XOPEN_SOURCE and _BSD_SOURCE defined, but it did break programs which explicitly define _BSD_SOURCE, causing it to be the only feature test macro present. ---