/usr/share/splint/imports/stdarg.lcl is in splint-data 3.1.2.dfsg1-2.
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 22 | /*
** stdarg.h
**
** NOT INCLUDED
*/
/*
typedef char *va_list;
void va_end(va_list) { ensures true; }
va_list va_start(va_list va, parmN) (list = ((va_list)&parmN + sizeof(parmN)))
constant va_arg(list, mode) ((mode *)(list = (va_list) ((((int)list + (__builtin_alignof(mode)<=4?3:7)) & (__builtin_alignof(mode)<=4?-4:-8))+sizeof(mode))))[-1]
*/
typedef int ptrdiff_t;
/*
#define offsetof(s_name,m_name) (size_t)&(((s_name*)0))->m_name
*/
|