libragephoto: fix build errors and some includes
- RagePhoto-Extract: include stdio.h - RagePhotoC: include stddef.h instead of stdio.h - RagePhotoTypedefs: include stddef.h
This commit is contained in:
parent
df388acaec
commit
b2e765c2af
3 changed files with 3 additions and 1 deletions
|
@ -17,6 +17,7 @@
|
|||
*****************************************************************************/
|
||||
|
||||
#include "RagePhotoC.h"
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
|
|
|
@ -21,8 +21,8 @@
|
|||
|
||||
#include "RagePhotoLibrary.h"
|
||||
#include "RagePhotoTypedefs.h"
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef LIBRAGEPHOTO_C_NOAPI
|
||||
#error "libragephoto was built without C API"
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#ifndef RAGEPHOTOTYPEDEFS_H
|
||||
#define RAGEPHOTOTYPEDEFS_H
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
Loading…
Reference in a new issue