]> git.sur5r.net Git - cc65/blobdiff - src/cc65/pragma.c
Rename trampoline to wrappedcall everywhere
[cc65] / src / cc65 / pragma.c
index fe7101d97c2e2e2cc2908d0d28b418f44c154cf3..98f1a20d0be51c7fc7f1a4f0295d4a587c3a624a 100644 (file)
@@ -51,7 +51,7 @@
 #include "scanstrbuf.h"
 #include "symtab.h"
 #include "pragma.h"
-#include "trampoline.h"
+#include "wrappedcall.h"
 
 
 
@@ -468,7 +468,7 @@ static void WrappedCallPragma (StrBuf* B)
             break;
 
         case PP_POP:
-            PopTrampoline();
+            PopWrappedCall();
 
             /* Done */
             goto ExitPoint;
@@ -511,7 +511,7 @@ static void WrappedCallPragma (StrBuf* B)
     /* Check if the name is valid */
     if (Entry && Entry->Flags & (SC_FUNC | SC_STORAGE)) {
 
-        PushTrampoline(Entry, Val);
+        PushWrappedCall(Entry, Val);
         Entry->Flags |= SC_REF;
 
     } else {