/usr/include/ns3.17/ns3/deprecated.h is in libns3-dev 3.17+dfsg-1build1.
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 | #ifndef NS3_DEPRECATED_H
#define NS3_DEPRECATED_H
#if defined(__GNUC__) && (__GNUC__ == 4) && (__GNUC_MINOR__ > 1)
#define NS_DEPRECATED __attribute__ ((deprecated))
#else
#define NS_DEPRECATED
#endif
#endif /* NS3_DEPRECATED_H */
|