CB100

Notas, resueltos y tps de la materia Algoritmos y Estructuras de Datos
Index Commits Files Refs README
commit 0a0530170036e6bdaf8c9fbf6ed47e8a3320eaa6
parent 99bdc52c3f0d251b8f894c8949d49fb16158b40c
Author: Martin Kloeckner <mjkloeckner@gmail.com>
Date:   Thu, 20 Jun 2024 01:56:55 -0300

change variable definition order

Diffstat:
MMakefile | 1-
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -2,7 +2,6 @@ CC := g++
 CFLAGS := -Wall -pedantic -ansi -std=c++98 -O3
 SRCS := $(wildcard *.cpp)
 OBJS := $(SRCS:.cpp=.o)
-
 TARGET := main
 
 .PHONY: all clean