]> git.lyx.org Git - lyx.git/blob - src/broken_headers.h
work around for bug reported by Mario Morandini
[lyx.git] / src / broken_headers.h
1 /* -*- C++ -*- */
2 /* This file is part of
3 * ======================================================
4 *
5 *           LyX, The Document Processor
6 *
7 *           Copyright 1995 Matthias Ettrich
8 *           Copyright 1995-2001 The LyX Team
9 *
10 * ======================================================
11  A few prototypes missing from Sun and SCO 3.2v4 header files */
12
13 #ifndef BROKEN_HEADERS_H
14 #define BROKEN_HEADERS_H
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 #ifndef HAVE_MEMMOVE
21 void bcopy(unsigned char * b1, unsigned char * b2, int length);
22 #endif
23
24 int readlink(char const * path, char * buf, int bufsiz);
25 int strcasecmp(char const * s1, char const * s2);
26
27 #ifdef __cplusplus
28 }
29 #endif
30
31 #endif /* _BROKEN_HEADERS_H */