IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 26501


Ignore:
Timestamp:
Jan 2, 2010, 6:12:22 PM (16 years ago)
Author:
eugene
Message:

add no op command so we can have inline comments

Location:
branches/eam_branches/20091201/Ohana/src/opihi/cmd.basic
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/20091201/Ohana/src/opihi/cmd.basic/Makefile

    r25965 r26501  
    3939$(SRC)/mkdir.$(ARCH).o     \
    4040$(SRC)/module.$(ARCH).o     \
     41$(SRC)/nop.$(ARCH).o        \
    4142$(SRC)/output.$(ARCH).o     \
    4243$(SRC)/quit.$(ARCH).o        \
  • branches/eam_branches/20091201/Ohana/src/opihi/cmd.basic/init.c

    r25965 r26501  
    2525int mkdir_opihi     PROTO((int, char **));
    2626int module          PROTO((int, char **));
     27int nop             PROTO((int, char **));
    2728int output          PROTO((int, char **));
    2829int pwd             PROTO((int, char **));
     
    6667  {1, "?",             list_help,          "list commands *"},
    6768  {1, "??",            list_vars,          "list variables *"},
     69  {1, "#",             nop,                "a NOP function"},
    6870  {1, "local",         local,              "define local variables"},
    6971  {1, "macro",         macro,              "deal with the macros *"},
     
    7173  {1, "mkdir",         mkdir_opihi,        "built-in mkdir command"},
    7274  {1, "module",        module,             "load script file from the modules directories"},
     75  {1, "nop",           nop,                "a NOP function"},
    7376  {1, "output",        output,             "redirect output to file"},
    7477  {1, "pwd",           pwd,                "print current working directory"},
Note: See TracChangeset for help on using the changeset viewer.