25 строки
508 B
C
25 строки
508 B
C
/**
|
|
* VampirTrace
|
|
* http://www.tu-dresden.de/zih/vampirtrace
|
|
*
|
|
* Copyright (c) 2005-2008, ZIH, TU Dresden, Federal Republic of Germany
|
|
*
|
|
* Copyright (c) 1998-2005, Forschungszentrum Juelich GmbH, Federal
|
|
* Republic of Germany
|
|
*
|
|
* See the file COPYRIGHT in the package base directory for details
|
|
**/
|
|
|
|
#ifndef _VT_STRDUP_H
|
|
#define _VT_STRDUP_H
|
|
|
|
#ifdef __cplusplus
|
|
# define EXTERN extern "C"
|
|
#else
|
|
# define EXTERN extern
|
|
#endif
|
|
|
|
EXTERN char *vt_strdup(const char *s);
|
|
|
|
#endif /* _VT_STRDUP_H */
|