|
30 | 30 | *
|
31 | 31 | * @return pointer to allocated memory
|
32 | 32 | */
|
33 |
| -extern ecma_object_t *ecma_alloc_object (void); |
| 33 | +ecma_object_t *ecma_alloc_object (void); |
34 | 34 |
|
35 | 35 | /**
|
36 | 36 | * Dealloc memory from an ecma-object
|
37 | 37 | */
|
38 |
| -extern void ecma_dealloc_object (ecma_object_t *); |
| 38 | +void ecma_dealloc_object (ecma_object_t *); |
39 | 39 |
|
40 | 40 | /**
|
41 | 41 | * Allocate memory for ecma-number
|
42 | 42 | *
|
43 | 43 | * @return pointer to allocated memory
|
44 | 44 | */
|
45 |
| -extern ecma_number_t *ecma_alloc_number (void); |
| 45 | +ecma_number_t *ecma_alloc_number (void); |
46 | 46 |
|
47 | 47 | /**
|
48 | 48 | * Dealloc memory from an ecma-number
|
49 | 49 | */
|
50 |
| -extern void ecma_dealloc_number (ecma_number_t *); |
| 50 | +void ecma_dealloc_number (ecma_number_t *); |
51 | 51 |
|
52 | 52 | /**
|
53 | 53 | * Allocate memory for header of a collection
|
54 | 54 | *
|
55 | 55 | * @return pointer to allocated memory
|
56 | 56 | */
|
57 |
| -extern ecma_collection_header_t *ecma_alloc_collection_header (void); |
| 57 | +ecma_collection_header_t *ecma_alloc_collection_header (void); |
58 | 58 |
|
59 | 59 | /**
|
60 | 60 | * Dealloc memory from the collection's header
|
61 | 61 | */
|
62 |
| -extern void ecma_dealloc_collection_header (ecma_collection_header_t *); |
| 62 | +void ecma_dealloc_collection_header (ecma_collection_header_t *); |
63 | 63 |
|
64 | 64 | /**
|
65 | 65 | * Allocate memory for non-first chunk of a collection
|
66 | 66 | *
|
67 | 67 | * @return pointer to allocated memory
|
68 | 68 | */
|
69 |
| -extern ecma_collection_chunk_t *ecma_alloc_collection_chunk (void); |
| 69 | +ecma_collection_chunk_t *ecma_alloc_collection_chunk (void); |
70 | 70 |
|
71 | 71 | /**
|
72 | 72 | * Dealloc memory from non-first chunk of a collection
|
73 | 73 | */
|
74 |
| -extern void ecma_dealloc_collection_chunk (ecma_collection_chunk_t *); |
| 74 | +void ecma_dealloc_collection_chunk (ecma_collection_chunk_t *); |
75 | 75 |
|
76 | 76 | /**
|
77 | 77 | * Allocate memory for ecma-string descriptor
|
78 | 78 | *
|
79 | 79 | * @return pointer to allocated memory
|
80 | 80 | */
|
81 |
| -extern ecma_string_t *ecma_alloc_string (void); |
| 81 | +ecma_string_t *ecma_alloc_string (void); |
82 | 82 |
|
83 | 83 | /**
|
84 | 84 | * Dealloc memory from ecma-string descriptor
|
85 | 85 | */
|
86 |
| -extern void ecma_dealloc_string (ecma_string_t *); |
| 86 | +void ecma_dealloc_string (ecma_string_t *); |
87 | 87 |
|
88 | 88 | /**
|
89 | 89 | * Allocate memory for getter-setter pointer pair
|
90 | 90 | *
|
91 | 91 | * @return pointer to allocated memory
|
92 | 92 | */
|
93 |
| -extern ecma_getter_setter_pointers_t *ecma_alloc_getter_setter_pointers (void); |
| 93 | +ecma_getter_setter_pointers_t *ecma_alloc_getter_setter_pointers (void); |
94 | 94 |
|
95 | 95 | /**
|
96 | 96 | * Dealloc memory from getter-setter pointer pair
|
97 | 97 | */
|
98 |
| -extern void ecma_dealloc_getter_setter_pointers (ecma_getter_setter_pointers_t *); |
| 98 | +void ecma_dealloc_getter_setter_pointers (ecma_getter_setter_pointers_t *); |
99 | 99 |
|
100 | 100 | /**
|
101 | 101 | * Allocate memory for external pointer
|
102 | 102 | *
|
103 | 103 | * @return pointer to allocated memory
|
104 | 104 | */
|
105 |
| -extern ecma_external_pointer_t *ecma_alloc_external_pointer (void); |
| 105 | +ecma_external_pointer_t *ecma_alloc_external_pointer (void); |
106 | 106 |
|
107 | 107 | /**
|
108 | 108 | * Dealloc memory from external pointer
|
109 | 109 | */
|
110 |
| -extern void ecma_dealloc_external_pointer (ecma_external_pointer_t *); |
| 110 | +void ecma_dealloc_external_pointer (ecma_external_pointer_t *); |
111 | 111 |
|
112 | 112 | /*
|
113 | 113 | * Allocate memory for extended object
|
114 | 114 | *
|
115 | 115 | * @return pointer to allocated memory
|
116 | 116 | */
|
117 |
| -extern ecma_extended_object_t *ecma_alloc_extended_object (size_t); |
| 117 | +ecma_extended_object_t *ecma_alloc_extended_object (size_t); |
118 | 118 |
|
119 | 119 | /**
|
120 | 120 | * Dealloc memory of an extended object
|
121 | 121 | */
|
122 |
| -extern void ecma_dealloc_extended_object (ecma_extended_object_t *, size_t); |
| 122 | +void ecma_dealloc_extended_object (ecma_extended_object_t *, size_t); |
123 | 123 |
|
124 | 124 | /**
|
125 | 125 | * Allocate memory for ecma-property pair
|
126 | 126 | *
|
127 | 127 | * @return pointer to allocated memory
|
128 | 128 | */
|
129 |
| -extern ecma_property_pair_t *ecma_alloc_property_pair (void); |
| 129 | +ecma_property_pair_t *ecma_alloc_property_pair (void); |
130 | 130 |
|
131 | 131 | /**
|
132 | 132 | * Dealloc memory from an ecma-property pair
|
133 | 133 | */
|
134 |
| -extern void ecma_dealloc_property_pair (ecma_property_pair_t *); |
| 134 | +void ecma_dealloc_property_pair (ecma_property_pair_t *); |
135 | 135 |
|
136 | 136 | /**
|
137 | 137 | * @}
|
|
0 commit comments