X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=driver%2Ffirm_opt.h;h=a381fa7b60fb7355b134f1b09acf8f4fbf2f22cd;hb=22d24ddd2209686fa723a62ccc19b7c2eea2d172;hp=0e7b60c72740d1ede37ac094e6cc9f4a37dbfd42;hpb=d9f918c846087ee7fc1b97e83671181c1ecf2fff;p=cparser diff --git a/driver/firm_opt.h b/driver/firm_opt.h index 0e7b60c..a381fa7 100644 --- a/driver/firm_opt.h +++ b/driver/firm_opt.h @@ -8,6 +8,7 @@ enum rts_names { rts_debugbreak, /**< the name of the __debugbreak() intrinsic */ rts_abort, /**< the name of the abort() function */ rts_abs, /**< the name of the abs() function */ + rts_alloca, /**< the name of the alloca() function */ rts_labs, /**< the name of the labs() function */ rts_llabs, /**< the name of the llabs() function */ rts_imaxabs, /**< the name of the imaxabs() function */ @@ -76,11 +77,15 @@ enum rts_names { rts_tanhl, /**< the name of the tanhl() function */ /* string functions */ - rts_memcpy, /**< the name of the memcpy() function */ - rts_memset, /**< the name of the memset() function */ rts_strcmp, /**< the name of the strcmp() function */ rts_strncmp, /**< the name of the strncmp() function */ + rts_strcpy, /**< the name of the strcpy() function */ rts_strlen, /**< the name of the strlen() function */ + rts_memcpy, /**< the name of the memcpy() function */ + rts_mempcpy, /**< the name of the mempcpy() function */ + rts_memmove, /**< the name of the memmove() function */ + rts_memset, /**< the name of the memset() function */ + rts_memcmp, /**< the name of the memcmp() function */ rts_max };