fca5dcd483
This factors out the common bits of arch/powerpc/xmon/start_*.c into a new nonstdio.c, and removes some stuff that was supposed to make xmon's I/O routines somewhat stdio-like but was never used. It also makes the parsing of the xmon= command line option common, so that ppc32 can now use xmon={off,on,early} also. Signed-off-by: Paul Mackerras <paulus@samba.org>
15 lines
422 B
C
15 lines
422 B
C
#define EOF (-1)
|
|
|
|
#define printf xmon_printf
|
|
#define putchar xmon_putchar
|
|
|
|
extern int xmon_putchar(int c);
|
|
extern int xmon_getchar(void);
|
|
extern char *xmon_gets(char *, int);
|
|
extern void xmon_printf(const char *, ...);
|
|
extern void xmon_map_scc(void);
|
|
extern int xmon_expect(const char *str, unsigned long timeout);
|
|
extern int xmon_write(void *ptr, int nb);
|
|
extern int xmon_readchar(void);
|
|
extern int xmon_read_poll(void);
|