You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
277 B
22 lines
277 B
15 years ago
|
#ifndef __ASM_MACH_UNCOMPRESS_H
|
||
|
#define __ASM_MACH_UNCOMPRESS_H
|
||
|
|
||
|
/*
|
||
|
* This does not append a newline
|
||
|
*/
|
||
|
static void putc(int c)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static inline void flush(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
static void arch_decomp_setup(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#define arch_decomp_wdog()
|
||
|
|
||
|
#endif /* __ASM_MACH_UNCOMPRESS_H */
|