File:  [DVB] / dietlibc / lib / explicit_memset.c
Revision 1.1: download - view: text, annotated - select for diffs
Mon Oct 21 12:30:54 2019 UTC (4 years, 7 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  add consttime_memequal and explicit_memset from NetBSD

#include <string.h>

void* explicit_memset(void* dest, int c, size_t len) {
  memset(dest,c,len);
  asm volatile("": : "r"(dest) : "memory");
  return dest;
}

LinuxTV legacy CVS <linuxtv.org/cvs>