home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Divers / lyx-0.13.2.tar.gz / lyx-0.13.2.tar / lyx-0.13.2 / src / broken_headers.h < prev    next >
C/C++ Source or Header  |  1998-04-23  |  719b  |  31 lines

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