xz-analysis-mirror/src/xz/private.h

51 lines
1.1 KiB
C
Raw Normal View History

2007-12-08 17:42:33 -05:00
///////////////////////////////////////////////////////////////////////////////
//
/// \file private.h
/// \brief Common includes, definions, and prototypes
//
// Author: Lasse Collin
2007-12-08 17:42:33 -05:00
//
// This file has been put into the public domain.
// You can do whatever you want with this file.
2007-12-08 17:42:33 -05:00
//
///////////////////////////////////////////////////////////////////////////////
#include "sysdefs.h"
#include "mythread.h"
#include "lzma.h"
2007-12-08 17:42:33 -05:00
#include <sys/types.h>
2007-12-08 17:42:33 -05:00
#include <sys/stat.h>
#include <errno.h>
2007-12-08 17:42:33 -05:00
#include <signal.h>
#include <locale.h>
#include <stdio.h>
#include <unistd.h>
#include "tuklib_gettext.h"
#include "tuklib_progname.h"
#include "tuklib_exit.h"
2007-12-08 17:42:33 -05:00
#ifndef STDIN_FILENO
# define STDIN_FILENO (fileno(stdin))
#endif
#ifndef STDOUT_FILENO
# define STDOUT_FILENO (fileno(stdout))
#endif
#ifndef STDERR_FILENO
# define STDERR_FILENO (fileno(stderr))
#endif
#include "main.h"
#include "coder.h"
#include "message.h"
2007-12-08 17:42:33 -05:00
#include "args.h"
#include "hardware.h"
#include "file_io.h"
2007-12-08 17:42:33 -05:00
#include "options.h"
#include "signals.h"
2007-12-08 17:42:33 -05:00
#include "suffix.h"
#include "util.h"