blob: 992cb2ebb493b7f7cc427762b88d7e1f407e11a7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef CAT
#define CAT 1
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
int catsprintf(char *buf, const char *format, ...);
/* sed -i -e 's/\<printf(/catsprintf(buffer, /g' dmidecode.c */
#endif
|