Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/alexmarsev/libbs2b.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhartwork <hartwork@bc0edfbe-c936-4687-b64d-f70bc3985e72>2009-03-06 22:36:33 +0300
committerhartwork <hartwork@bc0edfbe-c936-4687-b64d-f70bc3985e72>2009-03-06 22:36:33 +0300
commit8d378a6d6bd0513dfc89c24ef66fe8afe8ed0270 (patch)
tree9bab7ff30d3993a9f25b080046365113e6dfd29e
parent4c11b89d2d92b39ca98e6d182f7c43ef2a703733 (diff)
Words matching "^_[A-Z]" are reserved, avoiding trouble
git-svn-id: svn://svn.code.sf.net/p/bs2b/code/trunk/libbs2b@60 bc0edfbe-c936-4687-b64d-f70bc3985e72
-rw-r--r--src/bs2b.h6
-rw-r--r--src/bs2bclass.h6
-rw-r--r--src/bs2bversion.h6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/bs2b.h b/src/bs2b.h
index 528eb85..b1ef755 100644
--- a/src/bs2b.h
+++ b/src/bs2b.h
@@ -21,8 +21,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef _BS2B_H_
-#define _BS2B_H_
+#ifndef BS2B_H
+#define BS2B_H
#include <limits.h>
@@ -169,4 +169,4 @@ char const *bs2b_runtime_version( void );
} /* extern "C" */
#endif /* __cplusplus */
-#endif /* _BS2B_H_ */
+#endif /* BS2B_H */
diff --git a/src/bs2bclass.h b/src/bs2bclass.h
index d2ddbd9..d3766dc 100644
--- a/src/bs2bclass.h
+++ b/src/bs2bclass.h
@@ -21,8 +21,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef _BS2BCLASS_H_
-#define _BS2BCLASS_H_
+#ifndef BS2BCLASS_H
+#define BS2BCLASS_H
#include "bs2b.h"
@@ -51,4 +51,4 @@ public:
void cross_feed( int24_t *sample );
}; // class bs2b_base
-#endif // _BS2BCLASS_H_
+#endif // BS2BCLASS_H
diff --git a/src/bs2bversion.h b/src/bs2bversion.h
index 821d034..d318f91 100644
--- a/src/bs2bversion.h
+++ b/src/bs2bversion.h
@@ -21,8 +21,8 @@
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-#ifndef _BS2BVERSION_H_
-#define _BS2BVERSION_H_
+#ifndef BS2BVERSION_H
+#define BS2BVERSION_H
#define BS2B_VERSION_MAJOR 2
#define BS2B_VERSION_MINOR 3
@@ -41,4 +41,4 @@
( BS2B_VERSION_MINOR << 8 ) | \
( BS2B_VERSION_RELEASE )
-#endif /* _BS2BVERSION_H_ */
+#endif /* BS2BVERSION_H */