filename | src/drivers/cdrom/isomem.c |
changeset | 1179:af1c5d7d5a5a |
prev | 1158:2b237e3417dd |
next | 1227:cf6126df0398 |
author | Nathan Keynes <nkeynes@lxdream.org> |
date | Sun Sep 18 08:24:27 2011 +1000 (9 years ago) |
permissions | -rw-r--r-- |
last change | Include stdint.h before libisofs.h - needed for more recent versions |
file | annotate | diff | log | raw |
1.1 --- a/src/drivers/cdrom/isomem.c Wed Jan 19 12:51:19 2011 +10001.2 +++ b/src/drivers/cdrom/isomem.c Sun Sep 18 08:24:27 2011 +10001.3 @@ -10,12 +10,14 @@1.4 * Memory stream extracted for use in lxdream by Nathan Keynes 2010.1.5 */1.7 -#include <libisofs.h>1.9 #include <stdlib.h>1.10 #include <string.h>1.11 #include <limits.h>1.12 #include <stdio.h>1.13 +#include <stdint.h>1.14 +#include <libisofs.h>1.15 +1.17 #ifndef MIN1.18 #define MIN(a,b) ((a)<=(b) ? (a) : (b))
.