summaryrefslogtreecommitdiff
path: root/lib/sbin/create_c_stuff.pl
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-06 20:17:41 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-06 20:17:41 +0000
commit23eb153e5340d4f73561661f08ad11aa1b587ecf (patch)
tree5506fa0da4ddd9bc3e6f185328a4aefabc018747 /lib/sbin/create_c_stuff.pl
parent0dd3598ac3a3bb736b26e776ecefeb6aac65bda4 (diff)
Changed logical and keywords to use CCTK types.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@681 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/create_c_stuff.pl')
-rw-r--r--lib/sbin/create_c_stuff.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/create_c_stuff.pl b/lib/sbin/create_c_stuff.pl
index 9203b4e7..45d44b51 100644
--- a/lib/sbin/create_c_stuff.pl
+++ b/lib/sbin/create_c_stuff.pl
@@ -329,11 +329,11 @@ sub get_c_type_string
$type eq "STRING" ||
$type eq "SENTENCE")
{
- $type_string = "char *";
+ $type_string = "CCTK_CHAR *";
}
elsif($type eq "LOGICAL")
{
- $type_string = "int ";
+ $type_string = "CCTK_INT ";
}
elsif($type eq "INT")
{