diff options
Diffstat (limited to 'lib/miyagi.h')
-rw-r--r-- | lib/miyagi.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/miyagi.h b/lib/miyagi.h new file mode 100644 index 00000000..569d2da9 --- /dev/null +++ b/lib/miyagi.h @@ -0,0 +1,40 @@ +/* Kludge to discard "const" from pointer + * Copyright (C) 2009 Chris Hall (GMCH), Highwayman + *. + * This file is part of GNU Zebra. + * + * GNU Zebra is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with GNU Zebra; see the file COPYING. If not, write to the Free + * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + +#ifndef _ZEBRA_MIYAGI_H +#define _ZEBRA_MIYAGI_H + +#ifndef Inline +#define Inline static inline +#endif + +/*============================================================================== + * Ghastly kludge to discard "const" from pointer + */ +Inline void* +miyagi(const void* ptr) +{ + union { + const void* waxon ; + void* waxoff ; + } shuffle ; + + shuffle.waxon = ptr ; + + return shuffle.waxoff ; +} ; + +#endif /* _ZEBRA_MIYAGI_H */ |