/usr/include/aal/print.h is in libaal-dev 1.0.6-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | /* Copyright (C) 2001, 2002, 2003 by Hans Reiser, licensing governed by
libaal/COPYING.
print.h -- printing and formating strings functions. */
#ifndef AAL_PRINT_H
#define AAL_PRINT_H
#ifndef ENABLE_MINIMAL
#include <aal/types.h>
extern int aal_vsnprintf(char *buff, uint32_t n,
const char *format,
va_list arg_list);
extern int aal_snprintf(char *buff, uint32_t n,
const char *format,
...);
#endif
#endif
|