aboutsummaryrefslogtreecommitdiffhomepage
path: root/builtin.h
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2005-10-15 08:33:01 +1000
committerGravatar axel <axel@liljencrantz.se>2005-10-15 08:33:01 +1000
commit638df31ca462b032d59bde586254be5f3dc21e35 (patch)
tree32c3b8d536a22c0b853f9273d5ea72007fa6adbf /builtin.h
parent0ebf6db4b972648ff5a2bed41120bff7b681ea37 (diff)
Implement the ulimit builtin
darcs-hash:20051014223301-ac50b-f4e6303dcfbe26318e23020444b54d80fed9f535.gz
Diffstat (limited to 'builtin.h')
-rw-r--r--builtin.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/builtin.h b/builtin.h
index 386797f5..58304644 100644
--- a/builtin.h
+++ b/builtin.h
@@ -105,5 +105,13 @@ void builtin_print_help( wchar_t *cmd, string_buffer_t *b );
int builtin_set(wchar_t **argv);
int builtin_commandline(wchar_t **argv);
+int builtin_ulimit(wchar_t **argv);
+
+/**
+ This function works like wperror, but it prints its result into
+ the sb_err string_buffer_t instead of to stderr. Used by the builtin
+ commands.
+*/
+void builtin_wperror( const wchar_t *s);
#endif