xz/src/xz/private.h

67 lines
1.3 KiB
C
Raw Normal View History

2007-12-08 22:42:33 +00:00
///////////////////////////////////////////////////////////////////////////////
//
/// \file private.h
2019-05-08 05:30:57 +00:00
/// \brief Common includes, definitions, and prototypes
2007-12-08 22:42:33 +00:00
//
// Author: Lasse Collin
2007-12-08 22:42:33 +00:00
//
// This file has been put into the public domain.
// You can do whatever you want with this file.
2007-12-08 22:42:33 +00:00
//
///////////////////////////////////////////////////////////////////////////////
#include "sysdefs.h"
#include "mythread.h"
#include "lzma.h"
2007-12-08 22:42:33 +00:00
#include <sys/types.h>
2007-12-08 22:42:33 +00:00
#include <sys/stat.h>
#include <errno.h>
2007-12-08 22:42:33 +00: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"
#include "tuklib_mbstr.h"
2007-12-08 22:42:33 +00:00
#if defined(_WIN32) && !defined(__CYGWIN__)
# define WIN32_LEAN_AND_MEAN
# include <windows.h>
#endif
#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
#ifdef HAVE_CAPSICUM
# define ENABLE_SANDBOX 1
#endif
#include "main.h"
#include "mytime.h"
#include "coder.h"
#include "message.h"
2007-12-08 22:42:33 +00:00
#include "args.h"
#include "hardware.h"
#include "file_io.h"
2007-12-08 22:42:33 +00:00
#include "options.h"
#include "signals.h"
2007-12-08 22:42:33 +00:00
#include "suffix.h"
#include "util.h"
#ifdef HAVE_DECODERS
# include "list.h"
#endif