View | Details | Raw Unified | Return to bug 133869
Collapse All | Expand All

(-)alloc.c (-2 / +1 lines)
Lines 1-7 Link Here
1
#include <stdlib.h>
1
#include "alloc.h"
2
#include "alloc.h"
2
#include "error.h"
3
#include "error.h"
3
extern char *malloc();
4
extern void free();
5
4
6
#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */
5
#define ALIGNMENT 16 /* XXX: assuming that this alignment is enough */
7
#define SPACE 4096 /* must be multiple of ALIGNMENT */
6
#define SPACE 4096 /* must be multiple of ALIGNMENT */
(-)spawn.c (+1 lines)
Lines 1-5 Link Here
1
#include <sys/types.h>
1
#include <sys/types.h>
2
#include <sys/stat.h>
2
#include <sys/stat.h>
3
#include "alloc.h"
3
#include "sig.h"
4
#include "sig.h"
4
#include "wait.h"
5
#include "wait.h"
5
#include "substdio.h"
6
#include "substdio.h"
(-)cdbmake_add.c (+1 lines)
Lines 1-4 Link Here
1
#include "cdbmake.h"
1
#include "cdbmake.h"
2
#include "alloc.h"
2
3
3
void cdbmake_init(cdbm)
4
void cdbmake_init(cdbm)
4
struct cdbmake *cdbm;
5
struct cdbmake *cdbm;

Return to bug 133869