|
Check-in Number:
|
2095 | |
| Date: |
2002-Apr-24 11:07:24 (local)
2002-Apr-24 09:07:24 (UTC) |
| User: | thl |
| Branch: | |
| Comment: |
added a tai_op stub |
| Tickets: |
|
| Inspections: |
|
| Files: |
|
ossp-pkg/tai/tai_lib.c 1.1 -> 1.2
--- tai_lib.c 2002/04/18 09:10:45 1.1
+++ tai_lib.c 2002/04/24 09:07:24 1.2
@@ -250,3 +250,13 @@
return TAI_OK;
}
+tai_rc_t tai_op(tai_t *tai, tai_op_t op, ...)
+{
+ va_list ap;
+
+ if (tai == NULL)
+ return TAI_ERR_ARG;
+ va_start(ap, op);
+ va_end(ap);
+ return TAI_ERR_IMP;
+}
|
|