bltin.h (adecfb8dfc833f61268bc831932a741c0a6312b0) bltin.h (c3f57269e604d9e4c9d5f1312a751fd796415202)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 40 unchanged lines hidden (view full) ---

49#define stderr out2
50#define printf out1fmt
51#undef putc
52#define putc(c, file) outc(c, file)
53#undef putchar
54#define putchar(c) out1c(c)
55#define fprintf outfmt
56#define fputs outstr
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 40 unchanged lines hidden (view full) ---

49#define stderr out2
50#define printf out1fmt
51#undef putc
52#define putc(c, file) outc(c, file)
53#undef putchar
54#define putchar(c) out1c(c)
55#define fprintf outfmt
56#define fputs outstr
57#define fwrite(ptr, size, nmemb, file) outbin(ptr, (size) * (nmemb), file)
57#define fflush flushout
58#define INITARGS(argv)
59#define warnx1(a, b, c) { \
60 char buf[64]; \
61 (void)snprintf(buf, sizeof(buf), a); \
62 error("%s", buf); \
63}
64#define warnx2(a, b, c) { \

--- 24 unchanged lines hidden ---
58#define fflush flushout
59#define INITARGS(argv)
60#define warnx1(a, b, c) { \
61 char buf[64]; \
62 (void)snprintf(buf, sizeof(buf), a); \
63 error("%s", buf); \
64}
65#define warnx2(a, b, c) { \

--- 24 unchanged lines hidden ---