1
0
mirror of https://github.com/moparisthebest/spdylay synced 2025-03-11 07:30:54 -04:00

Added extern "C"

This commit is contained in:
Tatsuhiro Tsujikawa 2012-01-18 21:36:29 +09:00
parent 3d7bd0accb
commit f7f3472c98

View File

@ -25,10 +25,18 @@
#ifndef SPDYLAY_H
#define SPDYLAY_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
enum spdylay_error {
SPDYLAY_ERR_NOMEM = -500
};
#ifdef __cplusplus
}
#endif
#endif /* SPDYLAY_H */