File: error.h

package info (click to toggle)
libhdf4 4.1r4-13
  • links: PTS
  • area: main
  • in suites: woody
  • size: 24,532 kB
  • ctags: 26,698
  • sloc: ansic: 207,298; fortran: 30,195; sh: 7,932; makefile: 7,472; cpp: 2,186; pascal: 1,407; asm: 1,027; yacc: 680; lex: 202; sed: 153
file content (17 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *	Copyright 1993, University Corporation for Atmospheric Research
 *      See netcdf/COPYRIGHT file for copying and redistribution conditions.
 */
/* $Id: error.h,v 1.3 1997/11/05 19:40:12 koziol Exp $ */
#ifndef _NC_ERROR_
#define _NC_ERROR_

#ifndef NO_STDARG
void nc_serror(const char *fmt, ...) ;
void NCadvise(int err, const char *fmt,...) ;
#else
void nc_serror() ;
void NCadvise() ;
#endif /* NO_STDARG */

#endif /* _NC_ERROR_ */