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 int printf(const char* fmt, ...);
15 void install_hdlr(int, interrupt_handler_t, void*);
18 #ifndef CONFIG_SYS_MALLOC_SIMPLE
21 void __udelay(unsigned long);
22 unsigned long get_timer(unsigned long);
23 int vprintf(const char *, va_list);
24 unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base);
25 int strict_strtoul(const char *cp, unsigned int base, unsigned long *res);
26 char *getenv (const char *name);
27 int setenv (const char *varname, const char *varvalue);
28 long simple_strtol(const char *cp, char **endp, unsigned int base);
29 int strcmp(const char *cs, const char *ct);
30 unsigned long ustrtoul(const char *cp, char **endp, unsigned int base);
31 unsigned long long ustrtoull(const char *cp, char **endp, unsigned int base);
32 #if defined(CONFIG_CMD_I2C) && \
33 (!defined(CONFIG_DM_I2C) || defined(CONFIG_DM_I2C_COMPAT))
34 int i2c_write (uchar, uint, int , uchar* , int);
35 int i2c_read (uchar, uint, int , uchar* , int);
38 void app_startup(char * const *);
40 #endif /* ifndef __ASSEMBLY__ */
43 #define EXPORT_FUNC(impl, res, func, ...) res(*func)(__VA_ARGS__);
51 #if defined(CONFIG_X86)
52 extern gd_t *global_data;
55 #endif /* __EXPORTS_H__ */