gdb-best-friend/examples/reverse/2.c
Sergio Durigan Junior dd97dffcfb Adding slides in en_US
This commit adds the slides in en_US, and also the examples.
2014-10-16 18:47:50 -04:00

17 lines
153 B
C

#include "1.h"
void
initialize (void)
{
int n = 0;
n = 12314314 % 453;
foo (n);
}
void
bar (int *v)
{
if (v != 0)
*v += 12314314 % 453;
}