miniOS
x86_64 hobby kernel with SMP, VFS, and POSIX process model
Loading...
Searching...
No Matches
stdarg.h
Go to the documentation of this file.
1// MIT License
2//
3// Copyright (c) 2026 Christian Spoo
4//
5// Permission is hereby granted, free of charge, to any person obtaining a copy
6// of this software and associated documentation files (the "Software"), to deal
7// in the Software without restriction, including without limitation the rights
8// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9// copies of the Software, and to permit persons to whom the Software is
10// furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in all
13// copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21// SOFTWARE.
22
23/* Partial-include protocol used by Newlib and glibc headers.
24 * When __need___va_list is defined before including <stdarg.h>, only
25 * __gnuc_va_list is requested (not the full va_list/va_start/va_arg set).
26 * This must be handled before the include guard so it works on re-include. */
27#ifdef __need___va_list
28 typedef __builtin_va_list __gnuc_va_list;
29# undef __need___va_list
30#endif
31
32#ifndef _STDARG_H_
33#define _STDARG_H_
34
35typedef __builtin_va_list va_list;
36#define va_start(v,l) __builtin_va_start(v,l)
37#define va_end(v) __builtin_va_end(v)
38#define va_arg(v,l) __builtin_va_arg(v,l)
39
40#if 0
41typedef char* va_list;
42
43#define __va_size(type) \
44 (((sizeof(type) + sizeof(long) - 1) / sizeof(long)) * sizeof(long))
45
46#define va_start(ap, last) \
47 ((ap) = (va_list) &(last) + __va_size(last))
48
49#define va_arg(ap, type) \
50 (*(type *)((ap) += __va_size(type), (ap) - __va_size(type)))
51#endif
52
53#endif
__builtin_va_list va_list
Definition stdarg.h:35