Skip to content

Instantly share code, notes, and snippets.

@rcxdude
Created April 19, 2015 18:59
Show Gist options
  • Save rcxdude/1e0cf24dcdcc5a9eb1fb to your computer and use it in GitHub Desktop.
Save rcxdude/1e0cf24dcdcc5a9eb1fb to your computer and use it in GitHub Desktop.
#include <stdint.h>
void blackhole(char *);
void test_with_blocks(void)
{
{
uint8_t test1[16];
blackhole(test1);
}
{
uint8_t test2[16];
blackhole(test2);
}
{
uint8_t test3[16];
blackhole(test3);
}
{
uint8_t test4[16];
blackhole(test4);
}
}
void test_without_blocks(void)
{
uint8_t test1[16];
blackhole(test1);
uint8_t test2[16];
blackhole(test2);
uint8_t test3[16];
blackhole(test3);
uint8_t test4[16];
blackhole(test4);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment