exit strfcpy, only use m_strcpy.
[apps/madmutt.git] / lib / str.h
index 8a480c3..140a4ba 100644 (file)
--- a/lib/str.h
+++ b/lib/str.h
@@ -30,7 +30,6 @@
 
 # define ISSPACE(c) isspace((unsigned char)c)
 # define ISBLANK(c) (c == ' ' || c == '\t')
-# define strfcpy(A,B,C)  m_strcpy(A,C,B)
 /* this macro must check for *c == 0 since isspace(0) has
  * unreliable behavior on some systems */
 # define SKIPWS(c) while (*(c) && isspace ((unsigned char) *(c))) c++;