Commit 8e55994d authored by Lev Walkin's avatar Lev Walkin

added line and file name information

parent 3990ba68
...@@ -11,8 +11,7 @@ ...@@ -11,8 +11,7 @@
#define ASN1C_ENVIRONMENT_VERSION 96 /* Compile-time version */ #define ASN1C_ENVIRONMENT_VERSION 96 /* Compile-time version */
int get_asn1c_environment_version(void); /* Run-time version */ int get_asn1c_environment_version(void); /* Run-time version */
#include <asn_types.h> #include <asn_application.h> /* Application-visible API */
#include <constr_TYPE.h>
#define CALLOC(nmemb, size) calloc(nmemb, size) #define CALLOC(nmemb, size) calloc(nmemb, size)
#define MALLOC(size) malloc(size) #define MALLOC(size) malloc(size)
...@@ -28,7 +27,8 @@ int get_asn1c_environment_version(void); /* Run-time version */ ...@@ -28,7 +27,8 @@ int get_asn1c_environment_version(void); /* Run-time version */
#ifdef __GNUC__ #ifdef __GNUC__
#define ASN_DEBUG(fmt, args...) do { \ #define ASN_DEBUG(fmt, args...) do { \
fprintf(stderr, fmt, ##args); \ fprintf(stderr, fmt, ##args); \
fprintf(stderr, "\n"); \ fprintf(stderr, " (%s:%d)\n", \
__FILE__, __LINE__); \
} while(0) } while(0)
#else /* !__GNUC__ */ #else /* !__GNUC__ */
extern void ASN_DEBUG_f(const char *fmt, ...); extern void ASN_DEBUG_f(const char *fmt, ...);
......
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