2008-11-27 Ralf Corsepius <ralf.corsepius@rtems.org>
* libc/posix/telldir.c: Use #if !defined() instead of #ifndef to fix GCC warning.
This commit is contained in:
parent
8f337bfef9
commit
27171a8cfa
|
@ -1,3 +1,8 @@
|
||||||
|
2008-11-27 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||||
|
|
||||||
|
* libc/posix/telldir.c: Use #if !defined() instead of #ifndef
|
||||||
|
to fix GCC warning.
|
||||||
|
|
||||||
2008-11-27 Ken Werner <ken.werner@de.ibm.com>
|
2008-11-27 Ken Werner <ken.werner@de.ibm.com>
|
||||||
|
|
||||||
* libc/machine/spu/Makefile.am: Add spu-mcount.S spu-gmon.c.
|
* libc/machine/spu/Makefile.am: Add spu-mcount.S spu-gmon.c.
|
||||||
|
|
|
@ -75,7 +75,7 @@ __LOCK_INIT(static, dd_hash_lock);
|
||||||
* return a pointer into a directory
|
* return a pointer into a directory
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _ELIX_LEVEL || _ELIX_LEVEL >= 2
|
#if !defined(_ELIX_LEVEL) || (_ELIX_LEVEL >= 2)
|
||||||
|
|
||||||
long
|
long
|
||||||
_DEFUN(telldir, (dirp),
|
_DEFUN(telldir, (dirp),
|
||||||
|
|
Loading…
Reference in New Issue