author | Alberto Bertogli
<albertito@blitiri.com.ar> 2009-03-29 04:15:46 UTC |
committer | Alberto Bertogli
<albertito@blitiri.com.ar> 2009-03-29 04:31:21 UTC |
parent | 8b08cec2ee53c7e5e0eb7d5f359e7dde1b254bcb |
UPGRADING | +2 | -0 |
libjio/libjio.h | +0 | -8 |
diff --git a/UPGRADING b/UPGRADING index 0d579e3..e5a4201 100644 --- a/UPGRADING +++ b/UPGRADING @@ -10,6 +10,8 @@ take much effort. When it's mandatory, it will be noted. -> 0.25 - It is no longer necessary to pass O_SYNC to jopen() if lingering transactions are not in use. + - libjio.h can no longer be included from C++ source without surrounding it + by an 'extern "C"'. This obviously should only affect C++ applications. -> 0.24 - The return values of jfsck() have changed, so applications using it need diff --git a/libjio/libjio.h b/libjio/libjio.h index 0d61c55..b092a48 100644 --- a/libjio/libjio.h +++ b/libjio/libjio.h @@ -23,10 +23,6 @@ #error "You must compile your application with Large File Support" #endif -#ifdef __cplusplus -extern "C" { -#endif - /* logical structures */ @@ -166,9 +162,5 @@ FILE *jfsopen(struct jfs *stream, const char *mode); #define J_ENOMEM -3 /* no enough free memory */ -#ifdef __cplusplus -} /* from extern "C" above */ -#endif - #endif