|
|
Author: fperrad
Date: Tue Feb 5 07:47:20 2008
New Revision: 25530
Modified:
trunk/include/parrot/list.h
trunk/src/list.c
Log:
[build]
- revert r25456 : ld() is needed by target : make hello
Modified: trunk/include/parrot/list.h
==============================================================================
--- trunk/include/parrot/list.h (original)
+++ trunk/include/parrot/list.h Tue Feb 5 07:47:20 2008
@@ -79,6 +79,11 @@
/* HEADERIZER BEGIN: src/list.c */
PARROT_API
+PARROT_CONST_FUNCTION
+PARROT_WARN_UNUSED_RESULT
+UINTVAL ld(UINTVAL x);
+
+PARROT_API
void list_assign(PARROT_INTERP,
ARGMOD(List *list),
INTVAL idx,
@@ -219,10 +224,6 @@
__attribute__nonnull__(3)
FUNC_MODIFIES(*pinfo);
-PARROT_CONST_FUNCTION
-PARROT_WARN_UNUSED_RESULT
-UINTVAL ld(UINTVAL x);
-
/* HEADERIZER END: src/list.c */
#endif /* PARROT_LIST_H_GUARD */
Modified: trunk/src/list.c
==============================================================================
--- trunk/src/list.c (original)
+++ trunk/src/list.c Tue Feb 5 07:47:20 2008
@@ -821,6 +821,7 @@
*/
+PARROT_API
PARROT_CONST_FUNCTION
PARROT_WARN_UNUSED_RESULT
UINTVAL
|
|