* gencode.c (build_instruction) [MUL]: Cast operands to word64, to
[deliverable/binutils-gdb.git] / gdb / gdb_string.h
CommitLineData
2b576293
C
1/* Portable <string.h>
2 Copyright 1995 Free Software Foundation, Inc.
3
4This file is part of GDB.
5
6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
6c9638b4 18Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2b576293
C
19
20#if !defined(GDB_STRING_H)
21#define GDB_STRING_H
22
23#ifdef STDC_HEADERS
24#include <string.h>
25#else
26# ifdef HAVE_STRING_H
27# include <string.h>
28# else
29# include <strings.h>
30# endif
b607efe7
FF
31
32#ifndef strchr
33extern char *strchr PARAMS ((const char *, int)); /* X3.159-1989 4.11.5.2 */
34#endif
35
36#ifndef strrchr
37extern char *strrchr PARAMS ((const char *, int)); /* X3.159-1989 4.11.5.5 */
38#endif
39
40#ifndef strstr
41extern char *strstr PARAMS ((const char *, const char *)); /* X3.159-1989 4.11.5.7 */
42#endif
43
44#ifndef strtok
45extern char *strtok PARAMS ((char *, const char *)); /* X3.159-1989 4.11.5.8 */
46#endif
47
48#ifndef strerror
49extern char *strerror PARAMS ((int)); /* X3.159-1989 4.11.6.2 */
50#endif
51
2b576293
C
52# ifdef HAVE_MEMORY_H
53# include <memory.h>
54# else
55extern void *memset();
56extern void *memcpy();
57extern void *memmove();
58extern int memcmp();
59# endif
60#endif
61
b607efe7 62extern char *strdup ();
2b576293
C
63
64#endif /* !defined(GDB_STRING_H) */
This page took 0.128628 seconds and 4 git commands to generate.