Changeset 471
- Timestamp:
- 09/04/07 13:27:07 (1 year ago)
- Files:
-
- trunk/thune/eval.c (modified) (4 diffs)
- trunk/thune/net.c (modified) (3 diffs)
- trunk/thune/project.r (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/thune/eval.c
r470 r471 1694 1694 1695 1695 #include "encoding.c" 1696 1697 #ifdef UR_CONFIG_NET 1698 #include "net.c" 1696 1699 #include "wait.c" 1700 #endif 1697 1701 1698 1702 #ifdef UR_CONFIG_DATAFLOW … … 1704 1708 extern void uc_parse( UThread*, UCell* ); 1705 1709 extern void uc_now( UThread*, UCell* ); 1706 #ifdef UR_CONFIG_NET1707 extern void uc_net_addr( UThread*, UCell* );1708 #endif1709 1710 1710 1711 static UCallDef _evalCalls[] = … … 1729 1730 { uc_infuse, "infuse" }, 1730 1731 { uc_now, "now" }, 1731 { uc_wait, "wait" },1732 1732 { uc_func, "func" }, 1733 1733 { uc_recycle, "recycle" }, … … 1738 1738 { uc_encodingQ, "encoding?" }, 1739 1739 #ifdef UR_CONFIG_NET 1740 { uc_wait, "wait" }, 1740 1741 { uc_net_addr, "net-addr" }, 1741 1742 #endif trunk/thune/net.c
r470 r471 17 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 ===========================================================================*/ 19 20 #ifdef UR_CONFIG_NET21 19 22 20 … … 95 93 96 94 // (port hostname socket-port -- port) 97 UR_CALL _PUB( uc_net_addr )95 UR_CALL( uc_net_addr ) 98 96 { 99 97 UBlock* blk; … … 456 454 457 455 458 #endif // UR_CONFIG_NET 456 /*EOF*/ trunk/thune/project.r
r458 r471 60 60 %stdio.c 61 61 %files.c 62 %net.c63 62 %math.c 64 63 %bignum.c
