Changeset 798 for soft/giet_vm/applications/rosenfeld/src/bmpNR.c
- Timestamp:
- Mar 2, 2016, 3:08:27 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/rosenfeld/src/bmpNR.c
r772 r798 10 10 #include <stdlib.h> 11 11 #include <math.h> 12 13 12 14 13 /* -- image -- */ … … 20 19 #include "nralloc.h" 21 20 #endif 21 22 #if TARGET_OS == LINUX 23 #include <sys/types.h> 24 #include <sys/stat.h> 25 #include <fcntl.h> 26 #include <unistd.h> 27 #endif 28 22 29 23 30 #include "palette.h" … … 242 249 //DEBUG(printf("BMP : %d %d\n", sizeof( BitmapFileHeader), sizeof( BitmapInfoHeader))); 243 250 if (sizeof(BitmapFileHeader) != 14) { 244 printf("*** Error SaveMBP: sizeof(BitmapFileHeader) = %d should be 14...\n", sizeof(BitmapFileHeader));251 printf("*** Error SaveMBP: sizeof(BitmapFileHeader) = %d should be 14...\n", (int) sizeof(BitmapFileHeader)); 245 252 } 246 253
Note: See TracChangeset
for help on using the changeset viewer.