bottleros/Userland/SampleCodeModule/shell/commands/excDiv.c

7 lines
119 B
C

#include "excDiv.h"
void excdiv(int argc, char *argv[]) {
int cero = 0;
int res = 1/cero;
res = res + 1;
}