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