error.h 428 B

1234567891011121314151617
  1. /* $Id$
  2. *
  3. * Copyright 2001-2003, Meiosys (www.meiosys.com). All rights reserved.
  4. *
  5. * See the COPYING file for the terms of usage and distribution.
  6. */
  7. #ifndef __sd_error_h
  8. #define __sd_error_h
  9. #include <stdarg.h>
  10. #include <sd/defs.h>
  11. extern int sd_debug(const char *fmt, ...) SD_ATTRIBUTE((format(printf, 1, 2)));
  12. extern int sd_error(const char *fmt, ...) SD_ATTRIBUTE((format(printf, 1, 2)));
  13. #endif /* __sd_error_h */