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

源代码在线查看: scan.c

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

相关代码

				/* Cover function to sparclet `scan' instruction.								   This file is in the public domain.  */								#ifdef __sparclet__								int				scan (int a, int b)				{				  int res;				  __asm__ ("scan %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));				  return res;				}								#endif							

相关资源