Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/include/openldap/malloc_common.h
Real path: /usr/include/malloc_common.h
Zurück
/* * Copyright (c) 1988, 2019, Oracle and/or its affiliates. All rights reserved. */ /* * This header defines the common set of interfaces every malloc(3C) * implementation is required to provide. Specific implementations * may provide additional interfaces in their own headers as well. * * Applications should not include this header, but should get the * standard definitions from <stdlib.h> instead. */ #ifndef _MALLOC_COMMON_H #define _MALLOC_COMMON_H #include <stddef.h> /* defines size_t */ #ifdef __cplusplus extern "C" { #endif extern void * calloc(size_t, size_t); extern void free(void *); extern void * malloc(size_t); extern size_t malloc_usable_size(void *); extern void * memalign(size_t, size_t); extern void * realloc(void *, size_t); #ifdef __cplusplus } #endif #endif /* _MALLOC_COMMON_H */