diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-20 12:14:06 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-20 12:14:06 -0400 |
commit | 2318207adcad74283881ffcefbad92797a2495aa (patch) | |
tree | ba208edb392134ec10223949bb8b7c8ae841e4d0 | |
parent | 246e15c0dc4f2e0120f7e54445d621bd3b1afbd8 (diff) | |
download | musl-2318207adcad74283881ffcefbad92797a2495aa.tar.gz |
fix incorrect include guard in mqueue.h
-rw-r--r-- | include/mqueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mqueue.h b/include/mqueue.h index ffbf4ae3..92e6ae5e 100644 --- a/include/mqueue.h +++ b/include/mqueue.h @@ -1,5 +1,5 @@ -#ifndef _SEMAPHORE_H -#define _SEMAPHORE_H +#ifndef _MQUEUE_H +#define _MQUEUE_H #ifdef __cplusplus extern "C" { #endif |