| 1 |
|
|---|
| 2 | /*
|
|---|
| 3 | * Copyright © 2001 Novell, Inc. All Rights Reserved.
|
|---|
| 4 | *
|
|---|
| 5 | * You may distribute under the terms of either the GNU General Public
|
|---|
| 6 | * License or the Artistic License, as specified in the README file.
|
|---|
| 7 | *
|
|---|
| 8 | */
|
|---|
| 9 |
|
|---|
| 10 | /*
|
|---|
| 11 | * FILENAME : NWVMem.h
|
|---|
| 12 | * DESCRIPTION : Memory management for Perl Interpreter on NetWare.
|
|---|
| 13 | * Watcom's hash table is used to store memory pointers.
|
|---|
| 14 | * All malloc's, realloc's, free's go through this.
|
|---|
| 15 | * Author : HYAK, SGP
|
|---|
| 16 | * Date : Januray 2001.
|
|---|
| 17 | *
|
|---|
| 18 | */
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | #ifndef ___NWVMEM_H_INC___
|
|---|
| 23 | #define ___NWVMEM_H_INC___
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 | #include "win32ish.h" // For "BOOL", "TRUE" and "FALSE"
|
|---|
| 27 | #include <nwhashcls.h> // CW changes
|
|---|
| 28 | #include <nwmalloc.h>
|
|---|
| 29 | #include "string.h"
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
|
|---|