File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ /*
2+ * CallstackLibrary - Library creating human-readable call stacks.
3+ *
4+ * Copyright (C) 2024 mhahnFr
5+ *
6+ * This file is part of the CallstackLibrary.
7+ *
8+ * The CallstackLibrary is free software: you can redistribute it and/or modify
9+ * it under the terms of the GNU General Public License as published by
10+ * the Free Software Foundation, either version 3 of the License, or
11+ * (at your option) any later version.
12+ *
13+ * The CallstackLibrary is distributed in the hope that it will be useful,
14+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+ * GNU General Public License for more details.
17+ *
18+ * You should have received a copy of the GNU General Public License along with the
19+ * CallstackLibrary, see the file LICENSE. If not, see <https://www.gnu.org/licenses/>.
20+ */
21+
22+ #ifndef vector_uint64_h
23+ #define vector_uint64_h
24+
25+ #include <stdint.h>
26+
27+ #include <DC4C/vector.h>
28+
29+ typedef_vector_light_named (uint64 , uint64_t );
30+
31+ #endif /* vector_uint64_h */
You can’t perform that action at this time.
0 commit comments