elks-enhanced
public
Read
Owner: themaster
Branch: master
Commits: 6893
Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL
Code
Commits
History
Branches
Bug Reports
Discussions
Compare
Settings
elks-enhanced
/
libc
/
include
/
c86
/
stdarg.h
File editor
#ifndef __STDARG_H #define __STDARG_H /* * stdarg.h for C86 * * 29 Nov 2024 Greg Haerr */ typedef char * __va_list; typedef __va_list va_list; #define va_start(vaptr,parm) \ (vaptr=(char *)&parm + \ ((sizeof(parm)+sizeof(int)-1)&~(sizeof(int)-1)),(void)0) #define va_arg(vaptr,__type) \ (vaptr += ((sizeof(__type)+sizeof(int)-1)&~(sizeof(int)-1)), \ (*(__type *)(vaptr-((sizeof(__type)+sizeof(int)-1)&~(sizeof(int)-1))))) #define va_end(vaptr) (vaptr = 0,(void)0) #endif
Commit message
This repository is read-only for this account.
Repository snapshot
Current branch
master
Visibility
public
Your access
Read
Remote
Configured
File activity
View file history