patches/tinyfugue-02-remove-inline.diff
author rtarnell
Fri, 02 May 2008 19:26:56 +0000
changeset 1079 034d3ead6b41
permissions -rw-r--r--
2008-05-02 River Tarnell <[email protected]> * SFEtinyfugue.spec: New spec. * patches/tinyfugue-01-installprefix.diff: Edit makefile to allow installation into $RPM_BUILD_ROOT. * patches/tinyfugue-02-remove-inline.diff: Remove the 'inline' keyword from a function to make Studio happy.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1079
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     1
--- src/variable.c.old	Fri May  2 20:02:58 2008
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     2
+++ src/variable.c	Fri May  2 20:03:22 2008
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     3
@@ -106,7 +106,7 @@
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     4
 Pattern looks_like_special_sub;    /* looks like a special substitution */
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     5
 Pattern looks_like_special_sub_ic; /* same, ignoring case */
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     6
 
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     7
-inline Var *newglobalvar(const char *name)
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     8
+Var *newglobalvar(const char *name)
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
     9
 {
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
    10
     Var *var;
034d3ead6b41 2008-05-02 River Tarnell <[email protected]>
rtarnell
parents:
diff changeset
    11
     var = newvar(name);