--- calc/calc.c.orig 2004-07-11 16:34:54.000000000 -0500
+++ calc/calc.c 2012-06-12 21:09:24.000000000 -0500
- while (getline(eingabe, LLEN) >= 0 && !streql(eingabe, "quit")) {
+ while (schily_getline(eingabe, LLEN) >= 0 && !streql(eingabe, "quit")) {
while (*opstr == ' ' || *opstr == '\t')
--- include/schily.h.orig 2004-03-04 18:30:40.000000000 -0600
+++ include/schily.h 2012-06-12 21:09:36.000000000 -0500
extern char *findbytes __PR((const void *, int, char));
extern int findline __PR((const char *, char, const char *,
-extern int getline __PR((char *, int));
+extern int schily_getline __PR((char *, int));
extern int getstr __PR((char *, int));
extern int breakline __PR((char *, char, char **, int));
extern int getallargs __PR((int *, char * const**, const char *, ...));
--- libschily/stdio/fgetline.c.orig 2003-06-14 18:55:42.000000000 -0500
+++ libschily/stdio/fgetline.c 2012-06-12 21:09:58.000000000 -0500
+schily_getline(buf, len)