Rev 3153 | Rev 3409 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3153 | Rev 3403 | ||
|---|---|---|---|
| Line 72... | Line 72... | ||
| 72 | 72 | ||
| 73 | for (j = 0; j < cnt % sizeof(unative_t); j++) |
73 | for (j = 0; j < cnt % sizeof(unative_t); j++) |
| 74 | ((uint8_t *)(((unative_t *) dst) + i))[j] = ((uint8_t *)(((unative_t *) src) + i))[j]; |
74 | ((uint8_t *)(((unative_t *) dst) + i))[j] = ((uint8_t *)(((unative_t *) src) + i))[j]; |
| 75 | } |
75 | } |
| 76 | 76 | ||
| 77 | return (char *) src; |
77 | return (char *) dst; |
| 78 | } |
78 | } |
| 79 | 79 | ||
| 80 | /** Fill block of memory |
80 | /** Fill block of memory |
| 81 | * |
81 | * |
| 82 | * Fill cnt bytes at dst address with the value x. |
82 | * Fill cnt bytes at dst address with the value x. |