s |SV* |new_constant |NULLOK const char *s|STRLEN len|NN const char *key|NN SV *sv \
|NULLOK SV *pv|NULLOK const char *type
# if defined(DEBUGGING)
-s |int |tokereport |NN const char *s|I32 rv
+s |int |tokereport |I32 rv
# endif
s |int |ao |int toketype
s |void |depcom
#endif
# if defined(DEBUGGING)
#ifdef PERL_CORE
-#define tokereport(a,b) S_tokereport(aTHX_ a,b)
+#define tokereport(a) S_tokereport(aTHX_ a)
#endif
# endif
#ifdef PERL_CORE
__attribute__nonnull__(pTHX_4);
# if defined(DEBUGGING)
-STATIC int S_tokereport(pTHX_ const char *s, I32 rv)
- __attribute__nonnull__(pTHX_1);
-
+STATIC int S_tokereport(pTHX_ I32 rv);
# endif
STATIC int S_ao(pTHX_ int toketype);
STATIC void S_depcom(pTHX);
*/
#ifdef DEBUGGING /* Serve -DT. */
-# define REPORT(retval) tokereport(s,(int)retval)
+# define REPORT(retval) tokereport((I32)retval)
#else
# define REPORT(retval) (retval)
#endif
/* dump the returned token in rv, plus any optional arg in yylval */
STATIC int
-S_tokereport(pTHX_ const char* s, I32 rv)
+S_tokereport(pTHX_ I32 rv)
{
if (DEBUG_T_TEST) {
const char *name = Nullch;