diff examples/myfeval.c @ 9932:6cb30a539481

untabify files in examples directory
author John W. Eaton <jwe@octave.org>
date Mon, 07 Dec 2009 14:53:20 -0500
parents 4295d634797d
children be41c30bcb44
line wrap: on
line diff
--- a/examples/myfeval.c
+++ b/examples/myfeval.c
@@ -2,14 +2,14 @@
 
 void
 mexFunction (int nlhs, mxArray* plhs[], int nrhs, 
-	     const mxArray* prhs[])
+             const mxArray* prhs[])
 {
   char *str;
 
   mexPrintf ("Hello, World!\n");
 
   mexPrintf ("I have %d inputs and %d outputs\n", nrhs,
-	     nlhs);
+             nlhs);
 
   if (nrhs < 1 || ! mxIsString (prhs[0])) 
     mexErrMsgTxt ("function name expected");