/*
* linux/arch/arm/kernel/armksyms.c
*
* Copyright (C) 2000 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/string.h>
#include <linux/cryptohash.h>
#include <linux/delay.h>
#include <linux/in6.h>
#include <linux/syscalls.h>
#include <linux/uaccess.h>
#include <linux/io.h>
#include <asm/checksum.h>
#include <asm/system.h>
#include <asm/ftrace.h>
/*
* libgcc functions - functions that are used internally by the
* compiler... (prototypes are not correct though, but that
* doesn't really matter since they're not versioned).
*/
/*供gcc编译器内部使用的一些运行时函数原型声明*/
/*算术运算函数*/
extern void __ashldi3(void);//算术左移b位: int __ashlsi3 (int a, int b)
extern void __ashrdi3(void);//算术左移b位: long __ashldi3 (long a, int b)
extern void __divsi3(void);// 返回a和b的有符号除法的商: int __divsi3 (int a, int b)