/usr/include/OpenJade/dsssl_ns.h is in libostyle-dev 1.4devel1-21.3+b1.
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 39 40 41 42 43 44 45 46 47 48 | // Copyright (c) 1996 James Clark
// See the file copying.txt for copying permission.
#ifndef dsssl_ns_INCLUDED
#define dsssl_ns_INCLUDED 1
#ifdef DSSSL_NAMESPACE
#ifdef SP_NAMESPACE
namespace SP_NAMESPACE { }
#endif
#ifdef GROVE_NAMESPACE
namespace GROVE_NAMESPACE { }
#endif
namespace DSSSL_NAMESPACE {
#ifdef SP_NAMESPACE
using namespace SP_NAMESPACE;
#endif
#ifdef GROVE_NAMESPACE
using namespace GROVE_NAMESPACE;
#endif
#if _MSC_VER >= 1100
/* This works around a bug with using directives in Visual C++ 6.0.
I don't know if it also works in 5.0 */
const int work_around_bug_in_visual_c_6 = 0;
}
namespace DSSSL_NAMESPACE {
#ifdef SP_NAMESPACE
using namespace SP_NAMESPACE;
#endif
#ifdef GROVE_NAMESPACE
using namespace GROVE_NAMESPACE;
#endif
#endif /* _MSC_VER >= 1100 */
}
#endif /* DSSSL_NAMESPACE */
#endif /* not dsssl_ns_INCLUDED */
|