/usr/include/coin/dylib_errs.h is in coinor-libdylp-dev 1.6.0-1.1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | #ifndef _DYLIB_ERRS_H
#define _DYLIB_ERRS_H
/*
This file is part of the support library for the Dylp LP distribution.
Copyright (C) 2005 -- 2007 Lou Hafer
School of Computing Science
Simon Fraser University
Burnaby, B.C., V5A 1S6, Canada
lou@cs.sfu.ca
This code is licensed under the terms of the Common Public License (CPL).
*/
/*
sccs: @(#)errs.h 2.3 03/18/04
svn/cvs: $Id: dylib_errs.h 148 2007-06-09 03:15:30Z lou $
*/
#include "dylib_std.h"
#ifdef _DYLIB_FORTRAN
#include "dylib_fortran.h"
#endif
void errinit(const char *emsgpath, const char *elogpath, bool errecho),
errterm(void) ;
void errmsg(int errid, ... ),
warn(int errid, ... ) ;
#ifdef _DYLIB_FORTRAN
void errmsg_(integer *errid, char *ident, ... ) ;
void warn_(integer *errid, char *ident, ... ) ;
#endif
#endif /* _DYLIB_ERRS_H */
|