/usr/include/sipxtapi/os/fstream is in libsipxtapi-dev 3.3.0~test17-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 | //
//
// Copyright (C) 2004, 2005 Pingtel Corp.
//
//
// $$
//////////////////////////////////////////////////////////////////////////////
#ifndef _fstream_h_
#define _fstream_h_
// If we are compiling for VxWorks, use the old form of fstream.h
// We do this to stay compatible with the version of the tools++
// object modules that are distributed with VxWorks.
#if defined(_VXWORKS)
#include <fstream.h>
#else
#include <fstream>
using namespace std;
#endif
#endif // _fstream_h_
|