* src/engine/md5.h: include stddef.h for size_t

* src/engine/sql/PostgresBackend.c: include ctype.h for tolower

	* src/engine/guid.h: include stddef.h for size_t

	* src/engine/gnc-engine-util.h: include stddef.h for size_t


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3908 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2001-04-08 11:19:25 +00:00
parent 0c1ccdc7ff
commit 3470b9c7fd
5 changed files with 12 additions and 1 deletions

View File

@@ -1,5 +1,13 @@
2001-04-07 Dave Peticolas <dave@krondo.com>
* src/engine/md5.h: include stddef.h for size_t
* src/engine/sql/PostgresBackend.c: include ctype.h for tolower
* src/engine/guid.h: include stddef.h for size_t
* src/engine/gnc-engine-util.h: include stddef.h for size_t
* src/scm/report/taxtxf.scm: fix bug
* src/scm/text-export.scm: fix for api change

View File

@@ -32,6 +32,7 @@
#include <assert.h>
#include <errno.h>
#include <glib.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>

View File

@@ -28,8 +28,8 @@
# include "config.h"
#endif
#include <ctype.h>
#include <glib.h>
#include <stddef.h>
/* This file defines an API for using globally unique identifiers. */

View File

@@ -21,6 +21,7 @@
#ifndef _MD5_H
#define _MD5_H 1
#include <stddef.h>
#include <stdio.h>
#if defined HAVE_LIMITS_H || _LIBC

View File

@@ -17,6 +17,7 @@
#include "config.h"
#include <ctype.h>
#include <glib.h>
#include <pwd.h>
#include <stdio.h>