/* 
   This file is part of Practical Distributed Processing
   Copyright (C) 2006-2007 Phillip J. Brooke and Richard F. Paige
*/

#include <string.h>

#ifdef __CYGWIN__
/* My installation of Cygwin does not appear to have the GNU extension
   `strfry'. */
char *strfry (char *s) {
  char *s2;
  s2 = strdup(s);
  return s2;
}
#endif

