mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-27 00:59:46 +00:00
Remove unused atom_to_str() function and the warning it generates
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
#ifndef SUBRDEFS_H
|
||||
#define SUBRDEFS_H 1
|
||||
#include "lispemul.h" /* for LispPTR */
|
||||
char *atom_to_str(LispPTR atom_index);
|
||||
void OP_subrcall(int subr_no, int argnum);
|
||||
#endif
|
||||
|
||||
@@ -77,15 +77,6 @@ extern LispPTR *PENDINGINTERRUPT68k;
|
||||
*/
|
||||
/***********************************************************/
|
||||
|
||||
char *atom_to_str(LispPTR atom_index) {
|
||||
PNCell *pnptr;
|
||||
char *pname_base;
|
||||
|
||||
pnptr = (PNCell *)GetPnameCell(atom_index);
|
||||
pname_base = (char *)NativeAligned2FromLAddr(pnptr->pnamebase);
|
||||
return (pname_base + 1);
|
||||
} /*atom_to_str*/
|
||||
|
||||
#define POP_SUBR_ARGS \
|
||||
do { \
|
||||
args[0] = NIL_PTR; \
|
||||
|
||||
Reference in New Issue
Block a user