Changeset 925a21e in mainline for uspace/lib/posix/math.c
- Timestamp:
- 2011-09-24T14:20:29Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5bf76c1
- Parents:
- 867e2555 (diff), 1ab4aca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/math.c
r867e2555 r925a21e 1 1 /* 2 * Copyright (c) 2011 Martin Decky2 * Copyright (c) 2011 Petr Koupy 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup libposix 30 30 * @{ 31 31 */ 32 /** @file 32 /** @file Mathematical operations. 33 33 */ 34 34 35 #include <async.h> 36 #include <async_obsolete.h> 37 #include <ns_obsolete.h> 38 #include <kernel/ipc/ipc_methods.h> 35 #define LIBPOSIX_INTERNAL 39 36 40 int service_obsolete_connect(sysarg_t service, sysarg_t arg2, sysarg_t arg3) 37 #include "internal/common.h" 38 #include "math.h" 39 40 /** 41 * 42 * @param x 43 * @param exp 44 * @return 45 */ 46 double posix_ldexp(double x, int exp) 41 47 { 42 return async_obsolete_connect_me_to(PHONE_NS, service, arg2, arg3); 48 // TODO: low priority, just a compile-time dependency of binutils 49 not_implemented(); 43 50 } 44 51 45 int service_obsolete_connect_blocking(sysarg_t service, sysarg_t arg2, sysarg_t arg3) 52 /** 53 * 54 * @param num 55 * @param exp 56 * @return 57 */ 58 double posix_frexp(double num, int *exp) 46 59 { 47 return async_obsolete_connect_me_to_blocking(PHONE_NS, service, arg2, arg3); 60 // TODO: low priority, just a compile-time dependency of binutils 61 not_implemented(); 48 62 } 49 63
Note:
See TracChangeset
for help on using the changeset viewer.