From: cloudwalk Date: Thu, 6 Aug 2020 12:18:41 +0000 (+0000) Subject: cmd: Delete stray function prototype that never actually got a definition X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b164365116c55794db3cfcc7d176bb28cee85f56;p=xonotic%2Fdarkplaces.git cmd: Delete stray function prototype that never actually got a definition git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12885 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cmd.h b/cmd.h index 387b24ff..d5394e09 100644 --- a/cmd.h +++ b/cmd.h @@ -236,7 +236,6 @@ void Cmd_CompleteAliasPrint (cmd_state_t *cmd, const char *partial); int Cmd_Argc (cmd_state_t *cmd); const char *Cmd_Argv (cmd_state_t *cmd, int arg); const char *Cmd_Args (cmd_state_t *cmd); -const char *Cmd_Args_After(cmd_state_t *cmd, int arg); // The functions that execute commands get their parameters with these // functions. Cmd_Argv(cmd, ) will return an empty string, not a NULL // if arg > argc, so string operations are always safe.