Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix a couple of -Wundef warnings.
  • Loading branch information
Chris Metcalf committed Dec 30, 2014
1 parent cd2c37c commit 6d6d7fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,5 +1,9 @@
2014-12-29 Chris Metcalf <cmetcalf@ezchip.com>

* sysdeps/unix/sysv/linux/tst-setgetname.c (do_test): Use #ifndef
instead of #if to avoid a Wundef warning.
* stdlib/tst-limits.c (do_test): Likewise.

* sysdeps/tile/math_private.h (fetestexcept): Add macro to
parallel other exception macros.
(fegetenv): Convert from macro to extern inline so that it applies
Expand Down
2 changes: 1 addition & 1 deletion stdlib/tst-limits.c
Expand Up @@ -58,7 +58,7 @@ do_test (void)
/* Values from POSIX and Unix. */
#ifdef PAGESIZE
TEST (PAGESIZE, "d", getpagesize ());
#elif PAGE_SIZE
#elif defined (PAGE_SIZE)
TEST (PAGE_SIZE, "d", getpagesize ());
#endif

Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/tst-setgetname.c
Expand Up @@ -101,7 +101,7 @@ do_test (int argc, char **argv)
{
res = get_self_comm (gettid (), name_check, TASK_COMM_LEN);

#if !__ASSUME_PROC_PID_TASK_COMM
#ifndef __ASSUME_PROC_PID_TASK_COMM
/* On this first test we look for ENOENT to be returned from
get_self_comm to indicate that the kernel is older than
2.6.33 and doesn't contain comm within the proc structure.
Expand Down

0 comments on commit 6d6d7fd

Please sign in to comment.