/* xstrdup.c */ /* Copyright 2000 by Eberhard Mattes Donated to the public domain. No warranty. 2000-05-27 Initial version */ #include #include "firewall.h" #include "libemfw.h" char *xstrdup (const char *s) { return xstrndup (s, strlen (s)); }