This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <mach/mach.h> | |
#include <mach/mach_vm.h> | |
static const size_t LENGTH = 10; | |
static const size_t SIZE = sizeof(int) * LENGTH; | |
void fillBuffer(int* buffer, size_t length) | |
{ | |
for (size_t i = 0; i < length; ++i) |