summaryrefslogtreecommitdiff
path: root/callback.h
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2014-07-31 11:44:58 +0200
committerChanho Park <chanho61.park@samsung.com>2014-08-22 20:38:27 +0900
commit3ea27fbec92833a25a66f237706ca47a2791db10 (patch)
treebdf99e5b4cfdd9698e3df15aa6730e1fd4d81817 /callback.h
parentdaac7cac98b5be89209263ba200d7df3c69b70b4 (diff)
downloadltrace-3ea27fbec92833a25a66f237706ca47a2791db10.tar.gz
ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.tar.bz2
ltrace-3ea27fbec92833a25a66f237706ca47a2791db10.zip
Normalize some include guards
Diffstat (limited to 'callback.h')
-rw-r--r--callback.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/callback.h b/callback.h
index 3db579c..62a63c4 100644
--- a/callback.h
+++ b/callback.h
@@ -18,8 +18,8 @@
* 02110-1301 USA
*/
-#ifndef _CALLBACK_H_
-#define _CALLBACK_H_
+#ifndef CALLBACK_H
+#define CALLBACK_H
/* Notes on the iteration interface used across ltrace. Typically the
* iteration function looks something like this:
@@ -65,4 +65,4 @@ enum callback_status {
#define CBS_STOP_IF(X) ((X) ? CBS_STOP : CBS_CONT)
#define CBS_CONT_IF(X) ((X) ? CBS_CONT : CBS_STOP)
-#endif /* _CALLBACK_H_ */
+#endif /* CALLBACK_H */