17 lines
169 B
C
17 lines
169 B
C
// Needed for OS X
|
|
|
|
#ifndef JPEGLIB_EXTERN_H
|
|
#define JPEGLIB_EXTERN_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <jpeglib.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|