K 10 svn:author V 5 peter K 8 svn:date V 27 2003-01-08T06:43:27.000000Z K 7 svn:log V 251 Change this: #include ... foo = (char *)strdup(...); To: #include foo = strdup(...); because the former segfaults on an ia64 since there is no prototype for strdup() in strings.h. Converting an "int" to a pointer is fatal. END