Skip to content

Commit

Permalink
Fix include path for linux.
Browse files Browse the repository at this point in the history
  • Loading branch information
Falk Rehwagen committed Jul 8, 2024
1 parent 9638483 commit 2728c16
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Installed/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1682,8 +1682,8 @@ Installed/Library/CoProcessor/Int8087: kernel math MAKELIB
intx87 : Installed/Library/CoProcessor/Intx87
Installed/Library/CoProcessor/Intx87: kernel math MAKELIB

taskmax : Installed/Driver/Task/Taskmax
Installed/Driver/Task/Taskmax: ui text MAKEDRV
taskmax : Installed/Driver/Task/TaskMax
Installed/Driver/Task/TaskMax: ui text MAKEDRV

bnf : Installed/Driver/Task/BNF
Installed/Driver/Task/BNF: ui text MAKEDRV
Expand Down
14 changes: 7 additions & 7 deletions Library/Breadbox/ImpGraph/IMPBMP/impfjpeg.goc
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@

/* FJPEG for product only */
@ifdef PRODUCT_FJPEG
@include <stdapp.goh>
#include <ansi\stdio.h>
#include <..\..\fjpeg\fjpeg.h>
#include <Ansi\stdio.h>
#include <..\..\Fjpeg\fjpeg.h>
#include <gstring.h>
#include <ansi\string.h>
#include <ansi\stdlib.h>
@include "impbmp\impjpeg.h"
#include <Ansi\string.h>
#include <Ansi\stdlib.h>
@include "IMPBMP\impjpeg.h"
#include <initfile.h>
@include <htmldrv.h>

#include "impbmp\ibcommon.h"
#include "IMPBMP\ibcommon.h"

static void ConvertLine(byte *dest, byte *src, word size)
{
Expand Down

0 comments on commit 2728c16

Please sign in to comment.