Author: Isomer <isomer@coders.net>
[ircu2.10.12-pk.git] / ircd / m_help.c
index 36d53eb3e261d8f3c40be0c3f62d565d9bf8edec..a56341fe8a150c8eafe171e903be72f44a187664 100644 (file)
@@ -111,20 +111,3 @@ int m_help(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
   return 0;
 }
 
-
-#if 0
-/*
- * m_help
- *
- * parv[0] = sender prefix
- */
-int m_help(struct Client *cptr, struct Client *sptr, int parc, char *parv[])
-{
-  int i;
-
-  for (i = 0; msgtab[i].cmd; i++)
-    sendto_one(sptr, ":%s NOTICE %s :%s", me.name, parv[0], msgtab[i].cmd); /* XXX DEAD */
-  return 0;
-}
-#endif /* 0 */
-