forked from w00fpack/dilloNG
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configure.in: define the {int,uint}*_t types with AC_TYPE_*.
* * * drop d_size
- Loading branch information
1 parent
86c91dc
commit 25a421b
Showing
5 changed files
with
50 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ | |
^missing$ | ||
(^|/)tags$ | ||
^src/dillo$ | ||
^d_size\.h$ | ||
^dpi/[^/]*\.dpi$ | ||
^dpid/dpid$ | ||
^dpid/dpidc$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
SUBDIRS = lout dw dlib dpip src doc dpid dpi test | ||
|
||
EXTRA_DIST = Doxyfile dillorc install-dpi-local | ||
EXTRA_DIST = Doxyfile dillorc install-dpi-local d_size.h | ||
|
||
sysconf_DATA = dillorc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef __D_SIZE_H__ | ||
#define __D_SIZE_H__ | ||
|
||
|
||
#include "config.h" | ||
|
||
#ifdef HAVE_STDINT_H | ||
#include <stdint.h> | ||
#else | ||
#ifdef HAVE_INTTYPES_H | ||
#include <inttypes.h> | ||
#else | ||
/* config.h defines {int,uint}*_t */ | ||
#endif /* HAVE_INTTYPES_H */ | ||
#endif /*HAVE_STDINT_H */ | ||
|
||
typedef unsigned char uchar_t; | ||
typedef unsigned short ushort_t; | ||
typedef unsigned long ulong_t; | ||
typedef unsigned int uint_t; | ||
typedef unsigned char bool_t; | ||
|
||
|
||
#endif /* __D_SIZE_H__ */ |