ucLinux is a very good embeded sytem. Most of company use this as their development OS.

源代码在线查看: rename.c

软件大小: 3456 K
上传用户: bandagemaster
关键词: development ucLinux embeded company
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* vi: set sw=4 ts=4: */				/*				 * rename() for uClibc				 *				 * Copyright (C) 2000-2004 by Erik Andersen 				 *				 * GNU Library General Public License (LGPL) version 2 or later.				 */								#include "syscalls.h"				#include 				#include 				#include 				#include 								#define __NR___syscall_rename __NR_rename				static inline _syscall2(int, __syscall_rename, const char *, oldpath,						const char *, newpath);								int rename(const char * oldpath, const char * newpath)				{					return __syscall_rename(oldpath, newpath);				}											

相关资源