Commit 27eaf82a authored by Bi-Ruei, Chiu's avatar Bi-Ruei, Chiu

Fix warning : function declaration isn’t a prototype

parent 20879ba2
......@@ -44,8 +44,8 @@ typedef struct asn_struct_ctx_s {
#include <asn_random_fill.h> /* Random structures support */
#ifdef ASN_DISABLE_OER_SUPPORT
typedef void (oer_type_decoder_f)();
typedef void (oer_type_encoder_f)();
typedef void (oer_type_decoder_f)(void);
typedef void (oer_type_encoder_f)(void);
typedef void asn_oer_constraints_t;
#else
#include <oer_decoder.h> /* Octet Encoding Rules encoder */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment