aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 18:54:10 +1000
committerDavid Walter Seikel2013-01-13 18:54:10 +1000
commit959831f4ef5a3e797f576c3de08cd65032c997ad (patch)
treee7351908be5995f0b325b2ebeaa02d5a34b82583 /libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c
parentAdd info about changes to Irrlicht. (diff)
downloadSledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.zip
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.gz
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.bz2
SledjHamr-959831f4ef5a3e797f576c3de08cd65032c997ad.tar.xz
Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard.
Diffstat (limited to 'libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c')
-rw-r--r--libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c76
1 files changed, 38 insertions, 38 deletions
diff --git a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c
index b0757e7..b27c167 100644
--- a/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c
+++ b/libraries/irrlicht-1.8/source/Irrlicht/jpeglib/rdgif.c
@@ -1,38 +1,38 @@
1/* 1/*
2 * rdgif.c 2 * rdgif.c
3 * 3 *
4 * Copyright (C) 1991-1997, Thomas G. Lane. 4 * Copyright (C) 1991-1997, Thomas G. Lane.
5 * This file is part of the Independent JPEG Group's software. 5 * This file is part of the Independent JPEG Group's software.
6 * For conditions of distribution and use, see the accompanying README file. 6 * For conditions of distribution and use, see the accompanying README file.
7 * 7 *
8 * This file contains routines to read input images in GIF format. 8 * This file contains routines to read input images in GIF format.
9 * 9 *
10 ***************************************************************************** 10 *****************************************************************************
11 * NOTE: to avoid entanglements with Unisys' patent on LZW compression, * 11 * NOTE: to avoid entanglements with Unisys' patent on LZW compression, *
12 * the ability to read GIF files has been removed from the IJG distribution. * 12 * the ability to read GIF files has been removed from the IJG distribution. *
13 * Sorry about that. * 13 * Sorry about that. *
14 ***************************************************************************** 14 *****************************************************************************
15 * 15 *
16 * We are required to state that 16 * We are required to state that
17 * "The Graphics Interchange Format(c) is the Copyright property of 17 * "The Graphics Interchange Format(c) is the Copyright property of
18 * CompuServe Incorporated. GIF(sm) is a Service Mark property of 18 * CompuServe Incorporated. GIF(sm) is a Service Mark property of
19 * CompuServe Incorporated." 19 * CompuServe Incorporated."
20 */ 20 */
21 21
22#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */ 22#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
23 23
24#ifdef GIF_SUPPORTED 24#ifdef GIF_SUPPORTED
25 25
26/* 26/*
27 * The module selection routine for GIF format input. 27 * The module selection routine for GIF format input.
28 */ 28 */
29 29
30GLOBAL(cjpeg_source_ptr) 30GLOBAL(cjpeg_source_ptr)
31jinit_read_gif (j_compress_ptr cinfo) 31jinit_read_gif (j_compress_ptr cinfo)
32{ 32{
33 fprintf(stderr, "GIF input is unsupported for legal reasons. Sorry.\n"); 33 fprintf(stderr, "GIF input is unsupported for legal reasons. Sorry.\n");
34 exit(EXIT_FAILURE); 34 exit(EXIT_FAILURE);
35 return NULL; /* keep compiler happy */ 35 return NULL; /* keep compiler happy */
36} 36}
37 37
38#endif /* GIF_SUPPORTED */ 38#endif /* GIF_SUPPORTED */