diff options
| author | rbuj <[email protected]> | 2021-02-22 14:20:48 +0100 | 
|---|---|---|
| committer | raveit65 <[email protected]> | 2021-03-08 01:05:54 +0100 | 
| commit | cd01551bfaf24989f4ae373fd8c42bc080fe0da6 (patch) | |
| tree | 5a81d5193c7e6020c53ed91bfe437322c13dcc65 /src | |
| parent | 8cb3a02a26c03e57d064bd03319e34b6930ac3f5 (diff) | |
| download | marco-cd01551bfaf24989f4ae373fd8c42bc080fe0da6.tar.bz2 marco-cd01551bfaf24989f4ae373fd8c42bc080fe0da6.tar.xz | |
bell: missing include guard
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/bell.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/core/bell.h b/src/core/bell.h index 5a75da43..adb19cc4 100644 --- a/src/core/bell.h +++ b/src/core/bell.h @@ -38,6 +38,9 @@  #include "display-private.h"  #include "frame-private.h" +#ifndef __BELL_H__ +#define __BELL_H__ +  #ifdef HAVE_XKB  /**   * Gives the user some kind of visual bell; in fact, this is our response @@ -106,3 +109,5 @@ void meta_bell_shutdown (MetaDisplay *display);   * \param frame  The frame which is being destroyed   */  void meta_bell_notify_frame_destroy (MetaFrame *frame); + +#endif /* __BELL_H__ */ | 
