This repository was archived by the owner on Sep 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-16
lines changed Expand file tree Collapse file tree 3 files changed +3
-16
lines changed Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ COMMONFLAGS:=-O2 -ggdb -Wall -Wextra -Wundef -Wshadow -Wpointer-arith -Wcast-ali
30
30
-Wno-discarded-qualifiers -D_FORTIFY_SOURCE=2 -D_GLIBCXX_ASSERTIONS \
31
31
-fstack-clash-protection -grecord-gcc-switches -fcf-protection -pipe \
32
32
-Werror=format-security -Werror=implicit-function-declaration -Wl,-z,defs \
33
- -Wl,-z,relro \
34
- -D DEBUG # Comentar esta linea para eliminar mensajes extra
33
+ -Wl,-z,relro
35
34
# Opciones solo para C
36
35
CFLAGS =$(COMMONFLAGS )
37
36
# Opciones solo para C++
Original file line number Diff line number Diff line change 1
1
#ifndef LSS_H
2
2
#define LSS_H
3
3
4
- #ifdef DEBUG
5
- #undef DEBUG
6
- #define DEBUG true
7
- #else
8
- #define DEBUG false
9
- #endif
4
+ #define DEBUG 0
10
5
11
6
// Librería estándar que incluye el tipo de dato booleano
12
7
#include <stdbool.h>
Original file line number Diff line number Diff line change 3
3
/*\
4
4
* TRABAJO PRÁCTICO TRANSVERSAL - TEORÍA DE LA COMPUTACIÓN I
5
5
*
6
- * @ Ezequiel Lizandro Dzioba
7
- *
8
6
* PARTE 1
9
7
* 1) Cargar un autómata finito "por partes": primero el conjunto de estados,
10
8
* luego el alfabeto y así (la transición de estados cargarla por terna).
43
41
44
42
// PRECOMPILADOR ///////////////////////////////////////////////////////////////
45
43
46
- #ifdef DEBUG
47
- #undef DEBUG
48
- #define DEBUG true
49
- #else
50
- #define DEBUG false
51
- #endif
44
+ #define DEBUG 0
52
45
53
46
#include <stdio.h> // Entrada y salida estándar
54
47
#include <stdlib.h> // Librería general estándar
You can’t perform that action at this time.
0 commit comments