Deleted Added
full compact
private.h (207842) private.h (213700)
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file private.h
4/// \brief Common includes, definions, and prototypes
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 11 unchanged lines hidden (view full) ---

20#include <signal.h>
21#include <locale.h>
22#include <stdio.h>
23#include <unistd.h>
24
25#include "tuklib_gettext.h"
26#include "tuklib_progname.h"
27#include "tuklib_exit.h"
1///////////////////////////////////////////////////////////////////////////////
2//
3/// \file private.h
4/// \brief Common includes, definions, and prototypes
5//
6// Author: Lasse Collin
7//
8// This file has been put into the public domain.

--- 11 unchanged lines hidden (view full) ---

20#include <signal.h>
21#include <locale.h>
22#include <stdio.h>
23#include <unistd.h>
24
25#include "tuklib_gettext.h"
26#include "tuklib_progname.h"
27#include "tuklib_exit.h"
28#include "tuklib_mbstr.h"
28
29
30#if defined(_WIN32) && !defined(__CYGWIN__)
31# define WIN32_LEAN_AND_MEAN
32# include <windows.h>
33#endif
34
29#ifndef STDIN_FILENO
30# define STDIN_FILENO (fileno(stdin))
31#endif
32
33#ifndef STDOUT_FILENO
34# define STDOUT_FILENO (fileno(stdout))
35#endif
36

--- 15 unchanged lines hidden ---
35#ifndef STDIN_FILENO
36# define STDIN_FILENO (fileno(stdin))
37#endif
38
39#ifndef STDOUT_FILENO
40# define STDOUT_FILENO (fileno(stdout))
41#endif
42

--- 15 unchanged lines hidden ---