1*b5677b36Schristos /* $NetBSD: ansi_realloc.h,v 1.1.1.1 2009/04/12 15:33:54 christos Exp $ */ 2*b5677b36Schristos 3*b5677b36Schristos /* 4*b5677b36Schristos * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC") 5*b5677b36Schristos * Copyright (c) 1997,1999 by Internet Software Consortium. 6*b5677b36Schristos * 7*b5677b36Schristos * Permission to use, copy, modify, and distribute this software for any 8*b5677b36Schristos * purpose with or without fee is hereby granted, provided that the above 9*b5677b36Schristos * copyright notice and this permission notice appear in all copies. 10*b5677b36Schristos * 11*b5677b36Schristos * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES 12*b5677b36Schristos * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 13*b5677b36Schristos * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR 14*b5677b36Schristos * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 15*b5677b36Schristos * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 16*b5677b36Schristos * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT 17*b5677b36Schristos * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 18*b5677b36Schristos */ 19*b5677b36Schristos 20*b5677b36Schristos #include <stddef.h> 21*b5677b36Schristos 22*b5677b36Schristos #define realloc __ansi_realloc 23*b5677b36Schristos 24*b5677b36Schristos void *__ansi_realloc(void *ptr, size_t size); 25