aboutsummaryrefslogtreecommitdiff
path: root/modutils
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-22 08:56:55 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-07-22 08:56:55 +0000
commitfa8cf20631cf02ae3e6b0db95a494261df1aee27 (patch)
tree9971c6951256dd0bba5ff2a7db08ed6f65ef218d /modutils
parent5658fe5f7869ce987e25dfb6554db5e062045319 (diff)
downloadbusybox-w32-fa8cf20631cf02ae3e6b0db95a494261df1aee27.tar.gz
busybox-w32-fa8cf20631cf02ae3e6b0db95a494261df1aee27.tar.bz2
busybox-w32-fa8cf20631cf02ae3e6b0db95a494261df1aee27.zip
Remove remaining libc5 support code
git-svn-id: svn://busybox.net/trunk/busybox@7090 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'modutils')
-rw-r--r--modutils/insmod.c6
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
248static const int MODUTILS_MODULE_H = 1; 248static 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
469static const int MODUTILS_OBJ_H = 1; 469static 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