remove dangling spaces

This commit is contained in:
mrdudz 2022-04-17 16:07:20 +02:00
parent 78244351b7
commit b54fb2dfd1
4 changed files with 6 additions and 6 deletions

View File

@ -294,8 +294,8 @@ int main (void)
revers(0); cputc('x'); chBack (); c1 = cpeekrevers(); chForth(); revers(0); cputc('x'); chBack (); c1 = cpeekrevers(); chForth();
revers(1); cputc('X'); chBack (); c2 = cpeekrevers(); chForth(); revers(1); cputc('X'); chBack (); c2 = cpeekrevers(); chForth();
cputc('\n'); cputc('\r'); cputc('\n'); cputc('\r');
revers(c1); cputc('o'); revers(c1); cputc('o');
revers(c2); cputc('O'); revers(c2); cputc('O');
/* test cpeeks() */ /* test cpeeks() */
revers(0); revers(0);

View File

@ -155,7 +155,7 @@ nocursor:
.proc printy .proc printy
ldy #0 ldy #0
loop1: loop1:
tya tya
pha pha
asl asl

View File

@ -1,4 +1,4 @@
/* this is a minimal / empty c program, any supported target that has some /* this is a minimal / empty c program, any supported target that has some
* sort of C support should be able to link this. Failure indicates a problem * sort of C support should be able to link this. Failure indicates a problem
* with the crt0 or the linker config of the respective target */ * with the crt0 or the linker config of the respective target */

View File

@ -4,7 +4,7 @@
int main (void) int main (void)
{ {
/* Get the uname data */ /* Get the uname data */
struct utsname buf; struct utsname buf;
if (uname (&buf) != 0) { if (uname (&buf) != 0) {
@ -12,7 +12,7 @@ int main (void)
return EXIT_FAILURE; return EXIT_FAILURE;
} }
/* Print it */ /* Print it */
printf ("sysname: \"%s\"\n", buf.sysname); printf ("sysname: \"%s\"\n", buf.sysname);
printf ("nodename: \"%s\"\n", buf.nodename); printf ("nodename: \"%s\"\n", buf.nodename);
printf ("release: \"%s\"\n", buf.release); printf ("release: \"%s\"\n", buf.release);