aboutsummaryrefslogtreecommitdiff
path: root/src/jpeg.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2013-09-15 00:31:17 -0400
committerKevin O'Connor <kevin@koconnor.net>2013-09-18 20:48:35 -0400
commit07cf73bad4c622cb92bf509c1b77572cc54d17e9 (patch)
tree60e03250d665e699615b1070b3925cd73fa9b29e /src/jpeg.c
parent392d2aacb6065319be3d31fdb37fef393e0149a9 (diff)
downloadseabios-hppa-07cf73bad4c622cb92bf509c1b77572cc54d17e9.zip
seabios-hppa-07cf73bad4c622cb92bf509c1b77572cc54d17e9.tar.gz
seabios-hppa-07cf73bad4c622cb92bf509c1b77572cc54d17e9.tar.bz2
Merge bmp.h, boot.h, jpeg.h, and post.h into util.h.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/jpeg.c')
-rw-r--r--src/jpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jpeg.c b/src/jpeg.c
index 925aa3d..c2138ed 100644
--- a/src/jpeg.c
+++ b/src/jpeg.c
@@ -41,8 +41,8 @@
#define __LITTLE_ENDIAN
#include "malloc.h"
-#include "jpeg.h"
#include "string.h"
+#include "util.h"
#define ISHIFT 11
#define IFIX(a) ((int)((a) * (1 << ISHIFT) + .5))