aboutsummaryrefslogtreecommitdiff
path: root/src/lib/include/stdio.h
blob: a0d741f87e84912eb303c22a115459e7917b7f51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include <stdarg.h>

#include <syscall.h>

extern fd_t stdio;

void putchar(int c);
void puts(char* s);
void printf(char* arg, ...);

int getchar();
void getline(char* buf, size_t l);

/* vim: set ts=4 sw=4 tw=0 noet :*/