Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/mem.c

    r1b20da0 ra35b458  
    103103        for (i = 0; i < n / sizeof(unsigned long); i++)
    104104                adst[i].n = asrc[i].n;
    105                
     105
    106106        for (j = 0; j < n % sizeof(unsigned long); j++)
    107107                ((unsigned char *) (((unsigned long *) dst) + i))[j] =
    108108                    ((unsigned char *) (((unsigned long *) src) + i))[j];
    109                
     109
    110110        return (char *) dst;
    111111}
Note: See TracChangeset for help on using the changeset viewer.