~ubuntu-branches/ubuntu/precise/gzip/precise

« back to all changes in this revision

Viewing changes to unlzw.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-10-19 11:42:42 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20111019114242-d8wiiu8kbvdtgmgj
Tags: 1.4-1ubuntu1
* Merge with Debian testing.  Remaining Ubuntu changes:
  - debian/{control,rules}: Remove the Win32 build and mingw64
    build-dependency, since mingw is in universe, and will remain so for
    the forseeable future.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * to accommodate in-memory decompression.
8
8
 */
9
9
 
10
 
#ifdef RCSID
11
 
static char rcsid[] = "$Id: unlzw.c,v 1.5 2006/12/11 18:54:39 eggert Exp $";
12
 
#endif
13
 
 
14
10
#include <config.h>
15
11
#include "tailor.h"
16
12
 
17
 
#ifdef HAVE_UNISTD_H
18
 
#  include <unistd.h>
19
 
#endif
20
 
#ifdef HAVE_FCNTL_H
21
 
#  include <fcntl.h>
22
 
#endif
 
13
#include <unistd.h>
 
14
#include <fcntl.h>
23
15
 
24
16
#include "gzip.h"
25
17
#include "lzw.h"