File: error.h

package info (click to toggle)
libhdf4 4.1r2-5.2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 24,280 kB
  • ctags: 27,715
  • sloc: ansic: 200,039; fortran: 26,639; java: 22,779; makefile: 6,361; sh: 4,612; cpp: 1,626; pascal: 839; yacc: 680; asm: 315; lex: 202; cs: 202; sed: 153; csh: 42
file content (17 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
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.1.1.1 1998/09/27 01:25:28 phil 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_ */