blob: bd2f92c2dc309dbb1f79eb56e06c1db7454e1da7 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* See LICENSE file for copyright and license details. */
#include "arg.h"
#define LEN(x) (sizeof (x) / sizeof *(x))
extern char *argv0;
void enprintf(int, const char *, ...);
void eprintf(const char *, ...);
void weprintf(const char *, ...);
|