projects
/
rpi-open-firmware.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
unified VC4 and ARM runtime code (including C++ runtime), updated some minor bits
[rpi-open-firmware.git]
/
lib
/
stdarg.h
1
2
3
#pragma once
4
5
typedef
__builtin_va_list
va_list
;
6
7
#define va_start(v,l) __builtin_va_start(v,l)
8
#define va_arg(v,l) __builtin_va_arg(v,l)
9
#define va_end(v) __builtin_va_end(v)
This page took
0.06019 seconds
and
4
git commands to generate.