From 1589e0669c90dff7904baac28ef0a3a0b127e9a8 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Fri, 19 Jul 2019 23:03:01 -0700 Subject: [PATCH] Changed all #include directives for the stdlib to <> instead of "". --- examples/hello-stdlib/hello.pvvs | 2 +- examples/print-number-from-stack/printnum.pvvs | 2 +- examples/random-heap-dump/randomheap.pvvs | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/hello-stdlib/hello.pvvs b/examples/hello-stdlib/hello.pvvs index dace168..507437e 100644 --- a/examples/hello-stdlib/hello.pvvs +++ b/examples/hello-stdlib/hello.pvvs @@ -5,4 +5,4 @@ SSSSN | ST: PUSH 0 NSTTSSSN | FC: JSR>1000 (printf; see stdlib) NNN | FC: Terminate program -#include "stdio.pvvs" +#include diff --git a/examples/print-number-from-stack/printnum.pvvs b/examples/print-number-from-stack/printnum.pvvs index 691601e..742f1db 100644 --- a/examples/print-number-from-stack/printnum.pvvs +++ b/examples/print-number-from-stack/printnum.pvvs @@ -6,4 +6,4 @@ SSSTSTSN | ST: Push +10 (ASCII '\n') TNSS | IO: Putchar NNN | FC: Terminate program -#include "stdio.pvvs" +#include diff --git a/examples/random-heap-dump/randomheap.pvvs b/examples/random-heap-dump/randomheap.pvvs index 8cc142c..b677618 100644 --- a/examples/random-heap-dump/randomheap.pvvs +++ b/examples/random-heap-dump/randomheap.pvvs @@ -14,5 +14,5 @@ SSSTSSSSN | PUSH 16 NSTTTTSSSN | JSR > 111000 (dump heap) NNN | DIE -#include "debug.pvvs" -#include "heap.pvvs" +#include +#include -- 2.20.1