8 /* These are declarations of exported functions available in C code */
9 unsigned long get_version(void);
12 void putc(const char);
13 void puts(const char*);
14 void printf(const char* fmt, ...);
15 void install_hdlr(int, interrupt_handler_t*, void*);
19 void udelay(unsigned long);
20 unsigned long get_timer(unsigned long);
21 void vprintf(const char *, va_list);
23 unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base);
24 char *getenv (char *name);
25 void setenv (char *varname, char *varvalue);
26 #if defined(CONFIG_CMD_I2C)
27 int i2c_write (uchar, uint, int , uchar* , int);
28 int i2c_read (uchar, uint, int , uchar* , int);
29 #endif /* CFG_CMD_I2C */
31 void app_startup(char **);
33 #endif /* ifndef __ASSEMBLY__ */
36 #define EXPORT_FUNC(x) XF_ ## x ,
45 #if defined(CONFIG_I386)
46 extern gd_t *global_data;
49 #endif /* __EXPORTS_H__ */