diff options
Diffstat (limited to 'src/xine-engine/utils.h')
-rw-r--r-- | src/xine-engine/utils.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/xine-engine/utils.h b/src/xine-engine/utils.h index d68cd0999..f45a41dc6 100644 --- a/src/xine-engine/utils.h +++ b/src/xine-engine/utils.h @@ -17,12 +17,16 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: utils.h,v 1.1 2001/04/18 22:36:09 f1rmb Exp $ + * $Id: utils.h,v 1.2 2001/07/18 21:38:17 f1rmb Exp $ * */ #ifndef HAVE_UTILS_H #define HAVE_UTILS_H +#ifdef __cplusplus +extern "C" { +#endif + void *xmalloc(size_t size); void *xmalloc_aligned(size_t alignment, size_t size); @@ -36,4 +40,8 @@ const char *get_homedir(void); char *chomp (char *str); +#ifdef __cplusplus +} +#endif + #endif |