mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
remove dangling spaces
This commit is contained in:
parent
3c1bb85b8e
commit
1be54d13bc
@ -294,8 +294,8 @@ int main (void)
|
||||
revers(0); cputc('x'); chBack (); c1 = cpeekrevers(); chForth();
|
||||
revers(1); cputc('X'); chBack (); c2 = cpeekrevers(); chForth();
|
||||
cputc('\n'); cputc('\r');
|
||||
revers(c1); cputc('o');
|
||||
revers(c2); cputc('O');
|
||||
revers(c1); cputc('o');
|
||||
revers(c2); cputc('O');
|
||||
|
||||
/* test cpeeks() */
|
||||
revers(0);
|
||||
|
@ -155,7 +155,7 @@ nocursor:
|
||||
.proc printy
|
||||
|
||||
ldy #0
|
||||
loop1:
|
||||
loop1:
|
||||
tya
|
||||
pha
|
||||
asl
|
||||
|
@ -1,4 +1,4 @@
|
||||
|
||||
|
||||
/* 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
|
||||
* with the crt0 or the linker config of the respective target */
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
|
||||
int main (void)
|
||||
{
|
||||
{
|
||||
/* Get the uname data */
|
||||
struct utsname buf;
|
||||
if (uname (&buf) != 0) {
|
||||
@ -12,7 +12,7 @@ int main (void)
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
/* Print it */
|
||||
/* Print it */
|
||||
printf ("sysname: \"%s\"\n", buf.sysname);
|
||||
printf ("nodename: \"%s\"\n", buf.nodename);
|
||||
printf ("release: \"%s\"\n", buf.release);
|
||||
|
Loading…
Reference in New Issue
Block a user