diff options
Diffstat (limited to 'src/3rdparty/libjpeg/coderules.doc')
-rw-r--r-- | src/3rdparty/libjpeg/coderules.doc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/libjpeg/coderules.doc b/src/3rdparty/libjpeg/coderules.doc index aa87d6ad4..0ab5d9bd3 100644 --- a/src/3rdparty/libjpeg/coderules.doc +++ b/src/3rdparty/libjpeg/coderules.doc @@ -39,7 +39,7 @@ source code by using macros to substitute shorter names.) We use function prototypes everywhere; we rely on automatic source code transformation to feed prototype-less C compilers. Transformation is done by the simple and portable tool 'ansi2knr.c' (courtesy of Ghostscript). -ansi2knr is not very bright, so it imposes a format retquirement on function +ansi2knr is not very bright, so it imposes a format requirement on function declarations: the function name MUST BEGIN IN COLUMN 1. Thus all functions should be written in the following style: @@ -85,7 +85,7 @@ so that the result is guaranteed to be of type size_t. The JPEG library is intended to be used within larger programs. Furthermore, we want it to be reentrant so that it can be used by applications that process -multiple images concurrently. The following rules support these retquirements: +multiple images concurrently. The following rules support these requirements: 1. Avoid direct use of file I/O, "malloc", error report printouts, etc; pass these through the common routines provided. |