Changeset 789f279
- Timestamp:
- May 13, 2022, 6:04:32 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- d8454b9
- Parents:
- accc9df9
- Location:
- libcfa/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/algorithms/range_iterator.cfa
raccc9df9 r789f279 20 20 #include <fstream.hfa> 21 21 22 void main(RangeIter & this) { 22 #include "bits/defs.hfa" 23 24 void main(RangeIter & this) libcfa_public { 23 25 for() { 24 26 this._start = -1; -
libcfa/src/memory.cfa
raccc9df9 r789f279 16 16 #include "memory.hfa" 17 17 #include "stdlib.hfa" 18 19 #pragma GCC visibility push(default) 18 20 19 21 // Internal data object. -
libcfa/src/parseargs.cfa
raccc9df9 r789f279 24 24 #include "common.hfa" 25 25 #include "limits.hfa" 26 27 #pragma GCC visibility push(default) 26 28 27 29 extern int cfa_args_argc __attribute__((weak)); -
libcfa/src/parseconfig.cfa
raccc9df9 r789f279 13 13 #include "parseconfig.hfa" 14 14 15 16 #pragma GCC visibility push(default) 15 17 16 18 // *********************************** exceptions *********************************** … … 110 112 111 113 112 [ bool ] comments( & ifstream in, [] char name ) {114 static [ bool ] comments( & ifstream in, [] char name ) { 113 115 while () { 114 116 in | name;
Note: See TracChangeset
for help on using the changeset viewer.