summaryrefslogtreecommitdiff
path: root/librabbitmq/utils/strdup.h
blob: 4478cbdba56cb6457afd0a6805919c7fae16e2de (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef librabbitmq_strdup_h
#define librabbitmq_strdup_h
/* strdup is not in ISO C90!
 * we define it here for easy inclusion
 */
static inline char *strdup(const char *str)
{
  return strcpy(malloc(strlen(str) + 1),str);
}
#endif