diff --git a/sorting/bubble_sort_2.c b/sorting/bubble_sort_2.c index 03dc36b4..26bbb526 100644 --- a/sorting/bubble_sort_2.c +++ b/sorting/bubble_sort_2.c @@ -10,9 +10,9 @@ * @author [Gabriel Fioravante](https://github.com/northernSage) */ -#include // for rand() calls -#include // for testing assert() -#include // for boolean values: true, false +#include /// for rand() calls +#include /// for assert() +#include /// for boolean values: true, false #define MAX 20