remove dangling spaces

This commit is contained in:
mrdudz
2022-04-17 16:07:52 +02:00
parent 1be54d13bc
commit 0129622383
89 changed files with 459 additions and 459 deletions

View File

@@ -1,6 +1,6 @@
/*
!!DESCRIPTION!! Implementation of Duff's device (loop unrolling).
!!ORIGIN!!
!!ORIGIN!!
!!LICENCE!! GPL, read COPYING.GPL
*/
@@ -34,7 +34,7 @@ int acmp(char* a, char* b, int count)
return 0;
}
void duffit (char* to, char* from, int count)
void duffit (char* to, char* from, int count)
{
int n = (count + 7) / 8;
@@ -55,14 +55,14 @@ int main(void)
{
char a[ASIZE] = {1};
char b[ASIZE] = {2};
/* a and b should be different */
if(!acmp(a, b, ASIZE)) {
failures++;
}
duffit(a, b, ASIZE);
/* a and b should be the same */
if(acmp(a, b, ASIZE)) {
failures++;