misc.c 249 B

1234567891011121314151617181920
  1. /*
  2. *
  3. */
  4. #include <assert.h>
  5. #include <stdio.h>
  6. #include <unistd.h>
  7. #include <string.h>
  8. #include <stdlib.h>
  9. #include <errno.h>
  10. #include <klish/kcontext.h>
  11. int klish_nop(kcontext_t *context)
  12. {
  13. context = context; // Happy compiler
  14. return 0;
  15. }