messagepack implementation for embedded systems (mbed / arduino)

Dependents:   hello_message_pack

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers util.h Source File

util.h

00001 /*
00002  * MessagePack for C utilities
00003  *
00004  * Copyright (C) 2014 FURUHASHI Sadayuki
00005  *
00006  *    Distributed under the Boost Software License, Version 1.0.
00007  *    (See accompanying file LICENSE_1_0.txt or copy at
00008  *    http://www.boost.org/LICENSE_1_0.txt)
00009  */
00010 #ifndef MSGPACK_UTIL_H
00011 #define MSGPACK_UTIL_H
00012 
00013 #define MSGPACK_UNUSED(a) (void)(a)
00014 
00015 #endif /* MSGPACK_UTIL_H */
00016