用于嵌入式Linux系统的标准C的库函数

源代码在线查看: times.c

软件大小: 6528 K
上传用户: whyzhao
关键词: Linux 嵌入式 标准
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 				#include 				#include 				#include "sys/syscall.h"				#include "sys/times.h"								int errno;								int __trap0 (int function, int p1, int p2, int p3);								#define TRAP0(f, p1, p2, p3) __trap0(f, (int)(p1), (int)(p2), (int)(p3))								clock_t				_times (struct tms *buffer)				{				  return TRAP0 (SYS_times, buffer, 0, 0);				}							

相关资源