Subversion Repositories HelenOS

Rev

Rev 2093 | Rev 2208 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2093 Rev 2125
Line 42... Line 42...
42
/* We need this address in spinlock to avoid deadlock in deadlock detection */
42
/* We need this address in spinlock to avoid deadlock in deadlock detection */
43
SPINLOCK_EXTERN(printflock);
43
SPINLOCK_EXTERN(printflock);
44
 
44
 
45
#define EOF (-1)
45
#define EOF (-1)
46
 
46
 
-
 
47
extern int puts(const char *s);
47
extern int printf(const char *fmt, ...);
48
extern int printf(const char *fmt, ...);
48
extern int sprintf(char *str, const char *fmt, ...);
49
extern int sprintf(char *str, const char *fmt, ...);
49
extern int snprintf(char *str, size_t size, const char *fmt, ...);
50
extern int snprintf(char *str, size_t size, const char *fmt, ...);
50
 
51
 
51
extern int vprintf(const char *fmt, va_list ap);
52
extern int vprintf(const char *fmt, va_list ap);