This doesn't work right on my glib 2.0 system, since LIBC_VERSION is not
defined, my cpp takes (<nothing> < 6) as true. (egcs-2.91.60)
Shouldn't it be something like:
#if defined(__KERNEL__) || !defined(__GLIBC__)
instead of the #if above?
Or something like:
#if defined(__KERNEL__) || ( defined(LIBC_VERSION) && (LIBC_VERSION < 6) )
I'm currently using the former, but I'm not sure which is more "correct".
Ciao!
-- "Boarding this vessel is an act of war. Ergo we surrender." --Rimmer (Red Dwarf episode: Gunmen of the Apocalypse)The Doctor What: "What, Doctor What" http://www.gerf.org/~docwhat/ docwhat@gerf.org (finger docwhat@gerf.org for PGP key) KF6VNC
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/