-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
introduce va_list #6661
Comments
I'm not sure a I guess there are C compilers where the first case is different from
? |
yeah, but nobody uses them, just x86_64 ABI, Win64 ABI, and newer ARM specifications That special value should be mostly invisible to the user -- the idea is to only allow the user to construct untyped versions, but to have the type parameter only for ccall. since The parser would need to be altered to recognize va_list{(...)} and apply cconvert correctly. I was looking at making |
Rather than squashing both meanings into a single |
Any update on this? C interop in Julia would be perfect if we could support this. |
Perhaps can be closed. Or only after #32748 is merged? |
|
proposal: introduce
va_list
type forccall
/cfunction
usage:
definitions:
thoughts? improvements? should I make a pull request?
The text was updated successfully, but these errors were encountered: