]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/process.h
tableprinter: header option now parsed by xtypes
[libucw.git] / ucw / process.h
index 2c7802379c6b5eec525fd950e34ff27253b3cf16..080685b8551cdc2a40d697d3c38ceaa25852f84a 100644 (file)
 #ifndef _UCW_PROCESS_H
 #define _UCW_PROCESS_H
 
+#ifdef CONFIG_UCW_CLEAN_ABI
+#define echo_command ucw_echo_command
+#define echo_command_v ucw_echo_command_v
+#define exec_command ucw_exec_command
+#define exec_command_v ucw_exec_command_v
+#define format_exit_status ucw_format_exit_status
+#define getproctitle ucw_getproctitle
+#define run_command ucw_run_command
+#define run_command_v ucw_run_command_v
+#define setproctitle ucw_setproctitle
+#define setproctitle_init ucw_setproctitle_init
+#endif
+
 /* proctitle.c */
 
+// Must be called before parsing of arguments
 void setproctitle_init(int argc, char **argv);
 void setproctitle(const char *msg, ...) FORMAT_CHECK(printf,1,2);
 char *getproctitle(void);