diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 14:19:41 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 15:20:08 +0100 |
commit | d1b18af7eea09312825a29bc8c6e797a845bdf77 (patch) | |
tree | ec3f9d3c0821baebf585ae7d9c2ce36353540923 /src/jackey.h | |
parent | 0bfe044a8d2f5baab02e8e7f599d5459664ba11c (diff) | |
download | patchage-d1b18af7eea09312825a29bc8c6e797a845bdf77.tar.gz patchage-d1b18af7eea09312825a29bc8c6e797a845bdf77.tar.bz2 patchage-d1b18af7eea09312825a29bc8c6e797a845bdf77.zip |
Clean up include guards
Diffstat (limited to 'src/jackey.h')
-rw-r--r-- | src/jackey.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/jackey.h b/src/jackey.h index 02a7735..2c0e298 100644 --- a/src/jackey.h +++ b/src/jackey.h @@ -1,5 +1,5 @@ /* - Copyright 2014 David Robillard <http://drobilla.net> + Copyright 2014-2020 David Robillard <d@drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -14,6 +14,9 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#ifndef JACKEY_H +#define JACKEY_H + /** The supported event types of an event port. @@ -70,3 +73,5 @@ other relevance to order values. */ #define JACKEY_ORDER "http://jackaudio.org/metadata/order" + +#endif // JACKEY_H |