/usr/include/mimetic/os/file.h is in libmimetic-dev 0.9.8-6.
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 | /***************************************************************************
copyright : (C) 2002-2008 by Stefano Barbato
email : stefano@codesink.org
$Id: file.h,v 1.8 2008-10-07 11:06:26 tat Exp $
***************************************************************************/
#ifndef _MIMETIC_OS_FILE_H
#define _MIMETIC_OS_FILE_H
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <cstdio>
#include <string>
#include <iterator>
#include <mimetic/libconfig.h>
#include <mimetic/os/stdfile.h>
#ifdef HAVE_MMAP
#include <mimetic/os/mmfile.h>
#endif
namespace mimetic
{
#if HAVE_MMAP == 1
typedef MMFile File;
#else
typedef StdFile File;
#endif
}
#endif
|