1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Fix includes so that string functions get prototyped.

Fix cast - repeat after me Joe: "I must not cast pointers to ints"!
This commit is contained in:
Patrick Caulfield 2001-09-13 12:38:08 +00:00
parent 5c8de1dbd5
commit 7c045c523b
2 changed files with 4 additions and 3 deletions

View File

@ -30,6 +30,7 @@
#include <assert.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include "dbg_malloc.h"
#include "log/log.h"

View File

@ -19,13 +19,13 @@
* Boston, MA 02111-1307, USA.
*
*/
#include <stdlib.h>
#include <string.h>
#include "pool.h"
#include "dbg_malloc.h"
#include "log/log.h"
#include <stdlib.h>
struct chunk {
char *begin, *end;
struct chunk *prev;
@ -199,7 +199,7 @@ char *pool_strdup(struct pool *p, const char *str)
void _align_chunk(struct chunk *c, unsigned alignment)
{
c->begin += alignment - ((unsigned) c->begin & (alignment - 1));
c->begin += alignment - ((unsigned long) c->begin & (alignment - 1));
}
struct chunk *_new_chunk(struct pool *p, size_t s)