Subversion Repositories HelenOS-historic

Rev

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

Rev 1271 Rev 1438
Line 36... Line 36...
36
/* We need this address in spinlock to avoid deadlock in deadlock detection */
36
/* We need this address in spinlock to avoid deadlock in deadlock detection */
37
extern spinlock_t printflock;
37
extern spinlock_t printflock;
38
 
38
 
39
#define EOF (-1)
39
#define EOF (-1)
40
 
40
 
41
extern int puts(const char * str);
-
 
42
 
-
 
43
extern int printf(const char *fmt, ...);
41
extern int printf(const char *fmt, ...);
44
extern int sprintf(char *str, const char *fmt, ...);
42
extern int sprintf(char *str, const char *fmt, ...);
45
extern int snprintf(char *str, size_t size, const char *fmt, ...);
43
extern int snprintf(char *str, size_t size, const char *fmt, ...);
46
 
44
 
47
extern int vprintf(const char *fmt, va_list ap);
45
extern int vprintf(const char *fmt, va_list ap);