diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-07-22 08:56:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-07-22 08:56:55 +0000 |
commit | 85e5e72bc1acd9d58c11bde6e14c8270cd9f169f (patch) | |
tree | 9971c6951256dd0bba5ff2a7db08ed6f65ef218d /modutils/insmod.c | |
parent | 0a14c9f924eaf6a64e78959a190d187d646b3c0c (diff) | |
download | busybox-w32-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.tar.gz busybox-w32-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.tar.bz2 busybox-w32-85e5e72bc1acd9d58c11bde6e14c8270cd9f169f.zip |
Remove remaining libc5 support code
Diffstat (limited to 'modutils/insmod.c')
-rw-r--r-- | modutils/insmod.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modutils/insmod.c b/modutils/insmod.c index 1f5965e0a..84617fa48 100644 --- a/modutils/insmod.c +++ b/modutils/insmod.c | |||
@@ -247,7 +247,7 @@ | |||
247 | #ifndef MODUTILS_MODULE_H | 247 | #ifndef MODUTILS_MODULE_H |
248 | static const int MODUTILS_MODULE_H = 1; | 248 | static const int MODUTILS_MODULE_H = 1; |
249 | 249 | ||
250 | #ident "$Id: insmod.c,v 1.98 2003/07/14 21:21:00 andersen Exp $" | 250 | #ident "$Id: insmod.c,v 1.99 2003/07/22 08:56:50 andersen Exp $" |
251 | 251 | ||
252 | /* This file contains the structures used by the 2.0 and 2.1 kernels. | 252 | /* This file contains the structures used by the 2.0 and 2.1 kernels. |
253 | We do not use the kernel headers directly because we do not wish | 253 | We do not use the kernel headers directly because we do not wish |
@@ -468,7 +468,7 @@ int delete_module(const char *); | |||
468 | #ifndef MODUTILS_OBJ_H | 468 | #ifndef MODUTILS_OBJ_H |
469 | static const int MODUTILS_OBJ_H = 1; | 469 | static const int MODUTILS_OBJ_H = 1; |
470 | 470 | ||
471 | #ident "$Id: insmod.c,v 1.98 2003/07/14 21:21:00 andersen Exp $" | 471 | #ident "$Id: insmod.c,v 1.99 2003/07/22 08:56:50 andersen Exp $" |
472 | 472 | ||
473 | /* The relocatable object is manipulated using elfin types. */ | 473 | /* The relocatable object is manipulated using elfin types. */ |
474 | 474 | ||
@@ -492,7 +492,7 @@ static const int MODUTILS_OBJ_H = 1; | |||
492 | # endif | 492 | # endif |
493 | #endif | 493 | #endif |
494 | 494 | ||
495 | /* For some reason this is missing from libc5. */ | 495 | /* For some reason this is missing from some ancient C libraries.... */ |
496 | #ifndef ELF32_ST_INFO | 496 | #ifndef ELF32_ST_INFO |
497 | # define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf)) | 497 | # define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf)) |
498 | #endif | 498 | #endif |