Mercurial > hg > octave-max
diff examples/myfunc.c @ 6581:1a414f670635
[project @ 2007-04-25 22:34:52 by jwe]
author | jwe |
---|---|
date | Wed, 25 Apr 2007 22:35:22 +0000 |
parents | d2bb3b8a8d20 |
children | 4270ded9ddc6 |
line wrap: on
line diff
--- a/examples/myfunc.c +++ b/examples/myfunc.c @@ -5,8 +5,8 @@ { const char *nm; nm = mexFunctionName (); - mexPrintf("You called function: %s\n", nm); + mexPrintf ("You called function: %s\n", nm); if (strcmp (nm, "myfunc") == 0) - mexPrintf("This is the principal function\n", nm); + mexPrintf ("This is the principal function\n", nm); return; }