diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-21 21:15:02 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-09-21 21:15:02 +0000 |
commit | 55d2bf5bef0a04bd976b35f968598637e26e95ed (patch) | |
tree | 28c36cf6deafd8994704b678a01a149a05226ee1 /pfinet/linux-src | |
parent | a64baf761265b4a09b058e146485c102b52a3449 (diff) | |
download | hurd-55d2bf5bef0a04bd976b35f968598637e26e95ed.tar.gz hurd-55d2bf5bef0a04bd976b35f968598637e26e95ed.tar.bz2 hurd-55d2bf5bef0a04bd976b35f968598637e26e95ed.zip |
Use route.h from glibc
Unfortunately the Linux source also uses <net/route.h>, so we have to
both make that include the glibc-provided one, and avoid making it emit
Linuxish definitions when they would conflict with glibc definitions.
Diffstat (limited to 'pfinet/linux-src')
-rw-r--r-- | pfinet/linux-src/include/net/route.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pfinet/linux-src/include/net/route.h b/pfinet/linux-src/include/net/route.h index 40aabdf6..e9ca2fee 100644 --- a/pfinet/linux-src/include/net/route.h +++ b/pfinet/linux-src/include/net/route.h @@ -20,6 +20,9 @@ * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ + +#include_next <net/route.h> + #ifndef _ROUTE_H #define _ROUTE_H |