mirror of
https://github.com/SmallPond/MIT6.828_OS.git
synced 2026-04-25 03:10:29 +08:00
LAB 4 IS DONE.
This commit is contained in:
14
lab/inc/stdarg.h
Normal file
14
lab/inc/stdarg.h
Normal file
@@ -0,0 +1,14 @@
|
||||
/* $NetBSD: stdarg.h,v 1.12 1995/12/25 23:15:31 mycroft Exp $ */
|
||||
|
||||
#ifndef JOS_INC_STDARG_H
|
||||
#define JOS_INC_STDARG_H
|
||||
|
||||
typedef __builtin_va_list va_list;
|
||||
|
||||
#define va_start(ap, last) __builtin_va_start(ap, last)
|
||||
|
||||
#define va_arg(ap, type) __builtin_va_arg(ap, type)
|
||||
|
||||
#define va_end(ap) __builtin_va_end(ap)
|
||||
|
||||
#endif /* !JOS_INC_STDARG_H */
|
||||
Reference in New Issue
Block a user