Commit f3ae6c6e authored by Tommi Rantala's avatar Tommi Rantala Committed by Shuah Khan

selftests: proc: fix warning: _GNU_SOURCE redefined

Makefile already contains -D_GNU_SOURCE, so we can remove it from the
*.c files.
Signed-off-by: default avatarTommi Rantala <tommi.t.rantala@nokia.com>
Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
parent 7b9621d4
...@@ -14,7 +14,6 @@ ...@@ -14,7 +14,6 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* Test that /proc/loadavg correctly reports last pid in pid namespace. */ /* Test that /proc/loadavg correctly reports last pid in pid namespace. */
#define _GNU_SOURCE
#include <errno.h> #include <errno.h>
#include <sched.h> #include <sched.h>
#include <sys/types.h> #include <sys/types.h>
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
#define _GNU_SOURCE
#include <unistd.h> #include <unistd.h>
#include <sys/syscall.h> #include <sys/syscall.h>
#include <sys/types.h> #include <sys/types.h>
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
*/ */
// Test that values in /proc/uptime increment monotonically // Test that values in /proc/uptime increment monotonically
// while shifting across CPUs. // while shifting across CPUs.
#define _GNU_SOURCE
#undef NDEBUG #undef NDEBUG
#include <assert.h> #include <assert.h>
#include <unistd.h> #include <unistd.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment