📄 sysdep.h
字号:
/* System includes and definitions used by the Motorola MCore simulator. Copyright (C) 1999 Free Software Foundation, Inc. Contributed by Cygnus Solutions.This file is part of GDB, the GNU debugger.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See theGNU General Public License for more details.You should have received a copy of the GNU General Public License alongwith this program; if not, write to the Free Software Foundation, Inc.,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#ifndef __SYSDEP_H#define __SYSDEP_H#ifndef hosts_std_host_H#include <fcntl.h>#include <errno.h>#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <ctype.h>#include <string.h>#include <sys/file.h>#include "ansidecl.h"#ifndef O_ACCMODE#define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)#endif#ifndef SEEK_SET#define SEEK_SET 0#endif#ifndef SEEK_CUR#define SEEK_CUR 1#endif#ifdef STDC_HEADERS#include <stdlib.h>/*#include <string.h>*/#elseextern char * mktemp ();#ifndef memsetextern PTR memset ();#endif#ifndef DONTDECLARE_MALLOCextern PTR malloc ();extern PTR realloc ();#endif#ifndef __GNUC__extern PTR memcpy ();#else/* char * memcpy (); */#endif#ifdef __STDC__extern void free ();#elseextern int free();#endif#ifndef strchrextern char * strchr();#endifextern char * getenv();extern PTR memchr();extern char * strrchr();extern char * strrchr();extern char * ctime();extern long atol();extern char * getenv();#endif /* STDC_HEADERS */#ifndef BYTES_IN_PRINTF_INT#define BYTES_IN_PRINTF_INT 4#endif#include "fopen-same.h"#define hosts_std_host_H#endif#ifdef STDC_HEADERS#include <stddef.h>#endif /* STDC_HEADERS */#endif /* __SYSDEP_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -