summaryrefslogtreecommitdiff
path: root/net/core/utils.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@conectiva.com.br>2003-09-28 14:04:44 -0300
committerArnaldo Carvalho de Melo <acme@conectiva.com.br>2003-09-28 14:04:44 -0300
commitc78d6c660bcec9b606e2afd7aa1ec946e14032b6 (patch)
tree715d3bb5a89f1a906ca226a9e1c45946c2354995 /net/core/utils.c
parentca8214e52bc8979cdb588fa61c100f13cc414e30 (diff)
o NET: move net/core/utils.c EXPORT_SYMBOLs from net/netsyms.c
Diffstat (limited to 'net/core/utils.c')
-rw-r--r--net/core/utils.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/net/core/utils.c b/net/core/utils.c
index 6a69fe47f483..7399804e1517 100644
--- a/net/core/utils.c
+++ b/net/core/utils.c
@@ -13,13 +13,15 @@
* 2 of the License, or (at your option) any later version.
*/
-#include <asm/uaccess.h>
-#include <asm/system.h>
-#include <linux/types.h>
-#include <linux/kernel.h>
+#include <linux/module.h>
#include <linux/jiffies.h>
-#include <linux/string.h>
+#include <linux/kernel.h>
#include <linux/mm.h>
+#include <linux/string.h>
+#include <linux/types.h>
+
+#include <asm/system.h>
+#include <asm/uaccess.h>
static unsigned long net_rand_seed = 152L;
@@ -71,3 +73,7 @@ int net_ratelimit(void)
spin_unlock_irqrestore(&ratelimit_lock, flags);
return 0;
}
+
+EXPORT_SYMBOL(net_random);
+EXPORT_SYMBOL(net_ratelimit);
+EXPORT_SYMBOL(net_srandom);