[svn:parrot] r47852 - trunk/src

petdance at svn.parrot.org petdance at svn.parrot.org
Sat Jun 26 04:05:31 UTC 2010


Author: petdance
Date: Sat Jun 26 04:05:31 2010
New Revision: 47852
URL: https://trac.parrot.org/parrot/changeset/47852

Log:
more PARROT_ annotations

Modified:
   trunk/src/nci_test.c

Modified: trunk/src/nci_test.c
==============================================================================
--- trunk/src/nci_test.c	Sat Jun 26 03:05:58 2010	(r47851)
+++ trunk/src/nci_test.c	Sat Jun 26 04:05:31 2010	(r47852)
@@ -160,6 +160,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_PURE_FUNCTION
 char
 nci_c(void)
 {
@@ -271,6 +272,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_PURE_FUNCTION
 int
 nci_i(void)
 {
@@ -353,6 +355,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_PURE_FUNCTION
 long
 nci_l(void)
 {
@@ -370,6 +373,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_CONST_FUNCTION
 int *
 nci_p(void)
 {
@@ -387,6 +391,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_CONST_FUNCTION
 char *
 nci_t(void)
 {
@@ -473,6 +478,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_CONST_FUNCTION
 void *
 nci_pp(void *p)
 {
@@ -511,6 +517,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_PURE_FUNCTION
 int
 nci_i4i(long * l, int i)
 {
@@ -719,6 +726,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_PURE_FUNCTION
 short
 nci_s(void)
 {
@@ -736,6 +744,7 @@
 */
 
 PARROT_DYNEXT_EXPORT
+PARROT_CONST_FUNCTION
 short
 nci_ssc(short l1, char l2)
 {


More information about the parrot-commits mailing list