diff options
author | Michael Vetter <jubalh@iodoru.org> | 2019-12-18 15:33:16 +0100 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2019-12-18 15:33:16 +0100 |
commit | 53b92561cb1a815ca2f3622ad7ec4e27cf2c069d (patch) | |
tree | f9593cb3d45b7ac362fd3785b996e9e676cbab1c /src | |
parent | 6978c395383d77e6c71d2cb0955d6b9a6016f536 (diff) | |
download | profani-tty-53b92561cb1a815ca2f3622ad7ec4e27cf2c069d.tar.gz |
Add header file guard to avatar.h
Diffstat (limited to 'src')
-rw-r--r-- | src/xmpp/avatar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xmpp/avatar.h b/src/xmpp/avatar.h index 142f0178..8f1415b6 100644 --- a/src/xmpp/avatar.h +++ b/src/xmpp/avatar.h @@ -33,7 +33,12 @@ * */ +#ifndef XMPP_AVATAR_H +#define XMPP_AVATAR_H + #include <glib.h> void avatar_pep_subscribe(void); bool avatar_get_by_nick(const char* nick); + +#endif |