/usr/include/I2util/mach_dep.h is in libi2util-dev 1.2-1.
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 | /*
* $Id: mach_dep.h 213 2012-08-23 17:46:00Z aaron $
*/
/************************************************************************
* *
* Copyright (C) 2002 *
* Internet2 *
* All Rights Reserved *
* *
************************************************************************/
/*
* File: mach_dep.h
*
* Author: Jeff Boote
* Internet2
*
* Date: Wed Apr 24 13:57:41 EDT 2002
*
* Description: This module attempts to isolate all machine
* dependencies from platform to platform.
*
* Based on code from UCAR DCS tools. Copyright information
* from UCAR follows:
*
* Copyright 2012, University Corporation for Atmospheric Research.
*
* This software may be used, subject to the terms of OSI's BSD-2 Clause
* License located at http://www.opensource.org/licenses/bsd-license.php/
*/
#ifndef _i2_mach_dep_h_
#define _i2_mach_dep_h_
extern
const char * const *I2GetSysErrList(
int *count
);
#endif /* _i2_mach_dep_h_ */
|