Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1999 DJ Delorie, see COPYING.DJ for details */
  2. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  3. #ifndef __dj_include_search_h_
  4. #define __dj_include_search_h_
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9.  
  10. #ifndef __dj_ENFORCE_ANSI_FREESTANDING
  11.  
  12. #ifndef __STRICT_ANSI__
  13.  
  14. #ifndef _POSIX_SOURCE
  15.  
  16. typedef struct qelem {
  17.   struct qelem *q_forw;
  18.   struct qelem *q_back;
  19.   char q_data[0];
  20. } qelem;
  21.  
  22. void insque(struct qelem *_elem, struct qelem *_pred);
  23. void remque(struct qelem *_elem);
  24.  
  25. #endif /* !_POSIX_SOURCE */
  26. #endif /* !__STRICT_ANSI__ */
  27. #endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
  28.  
  29. #ifndef __dj_ENFORCE_FUNCTION_CALLS
  30. #endif /* !__dj_ENFORCE_FUNCTION_CALLS */
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35.  
  36. #endif /* !__dj_include_search_h_ */
  37.