summaryrefslogtreecommitdiff
path: root/print.c
blob: 5b1be08ffe844de1eeed87e7e654798773d64e82 (plain)
1
2
3
4
5
6
7
8
9
#include <string.h>
#include <unistd.h>

#include "print.h"

void print(const char* str, ...)
{
    write(STDOUT_FILENO, str, strlen(str));
}