MINIX2.0操作系统源码 MINIX2.0操作系统源码

源代码在线查看: printf.c

软件大小: 714 K
上传用户: littlefish
关键词: MINIX 2.0 操作系统 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*
				 * printf - write on the standard output stream
				 */
				/* $Header: printf.c,v 1.3 89/12/18 15:03:08 eck Exp $ */
				
				#include	
				#include	
				#include	"loc_incl.h"
				
				int
				printf(const char *format, ...)
				{
					va_list ap;
					int retval;
				
					va_start(ap, format);
				
					retval = _doprnt(format, ap, stdout);
				
					va_end(ap);
				
					return retval;
				}
							

相关资源