Ignore:
File:
1 edited

Legend:

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

    r2498b95 r472fe7a  
    3838#include <stddef.h>
    3939#include <stdint.h>
     40#include "private/cc.h"
    4041
    4142/** Fill memory block with a constant value. */
    42 void *memset(void *dest, int b, size_t n)
     43ATTRIBUTE_OPTIMIZE_NO_TLDP
     44    void *memset(void *dest, int b, size_t n)
    4345{
    4446        char *pb;
     
    114116
    115117/** Copy memory block. */
    116 void *memcpy(void *dst, const void *src, size_t n)
     118ATTRIBUTE_OPTIMIZE_NO_TLDP
     119    void *memcpy(void *dst, const void *src, size_t n)
    117120{
    118121        size_t i;
Note: See TracChangeset for help on using the changeset viewer.