diff options
author | David Macek <david.macek.0@gmail.com> | 2021-04-07 10:49:00 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2021-04-07 10:49:08 +0200 |
commit | 6005ed21c9d39d6c9f299d836a50344b04f99b41 (patch) | |
tree | f3545583eddd2bb55d4b43d17278462a88640c43 | |
parent | 7725d2ad75e9b838118e790ffd2dbd7579c4cb88 (diff) | |
download | newlib-6005ed21c9d39d6c9f299d836a50344b04f99b41.zip newlib-6005ed21c9d39d6c9f299d836a50344b04f99b41.tar.gz newlib-6005ed21c9d39d6c9f299d836a50344b04f99b41.tar.bz2 |
fenv: fix up stub file comment, drop symlinks from descriptiongithub/topic/shared_arch_headerstopic/shared_arch_headers
also slightly fixed up formatting
-rw-r--r-- | newlib/libm/fenv/fenv_stub.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/newlib/libm/fenv/fenv_stub.c b/newlib/libm/fenv/fenv_stub.c index a4eb652..5007622 100644 --- a/newlib/libm/fenv/fenv_stub.c +++ b/newlib/libm/fenv/fenv_stub.c @@ -1,22 +1,22 @@ /* * SPDX-License-Identifier: BSD-2-Clause - * + * * (c) Copyright 2019 Joel Sherrill <joel@rtems.org */ /* - * This file is intentionally empty. + * This file is intentionally empty. * - * Newlib's build infrastructure needs a machine specific fiel to override - * the generic implementation in the library. When a target - * implementation of the fenv.h methods puts all methods in a single file - * (e.g. fenv.c) or some as inline methods in its <sys/fenv.h>, it will need - * to override the default implementation found in a file in this directory. + * Newlib's build infrastructure needs a machine specific file to override + * the generic implementation in the library. When a target implementation + * of the fenv.h methods puts all methods in a single file (e.g. fenv.c) or + * some as inline methods in its <sys/fenv.h>, it will need to override the + * default implementation found in a file in this directory. * * For each file that the target's machine directory needs to override, - * this file should be symbolically linked to that specific file name - * in the target directory. For example, the target may use fe_dfl_env.c - * from the default implementation but need to override all others. + * there should be a corresponding stub file in the target directory. + * To avoid copying this explanation far and wide, #including this + * fenv_stub.c from the stub files in encouraged. */ /* deliberately empty */ |