Deleted Added
full compact
memory.c (178529) memory.c (178546)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

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

30 * Routines for memory management
31 */
32
33#include <sys/types.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37#include <strings.h>
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

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

30 * Routines for memory management
31 */
32
33#include <sys/types.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37#include <strings.h>
38#include "memory.h"
38
39static void
40memory_bailout(void)
41{
42 (void) fprintf(stderr, "Out of memory\n");
43 exit(1);
44}
45

--- 57 unchanged lines hidden ---
39
40static void
41memory_bailout(void)
42{
43 (void) fprintf(stderr, "Out of memory\n");
44 exit(1);
45}
46

--- 57 unchanged lines hidden ---