aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform
AgeCommit message (Expand)AuthorFilesLines
2021-04-27Infra: AWS - add CSIT parameters to bootstrapTomas Alexy2-2/+2
2021-04-27Infra: Add AWS how-toTomas Alexy1-3/+55
2021-04-13Terraform: change slack api hookspmikus3-78/+73
2021-04-08Ansible git movepmikus4-8/+8
2021-04-08Infra: AWS Update to Ubuntu 20.04Tomas Alexy6-38/+88
2021-03-29Infra: AWS deployment improvementsTomas Alexy4-19/+58
2021-03-11Infra: Switch csit-shim to fdiotoolspmikus52-0/+29219
cumentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #ifndef included_math_h #define included_math_h #include <vppinfra/clib.h> always_inline f64 sqrt (f64 x) { return __builtin_sqrt (x); } always_inline f64 fabs (f64 x) { return __builtin_fabs (x); } #ifndef isnan #define isnan(x) __builtin_isnan(x) #endif #ifndef isinf #define isinf(x) __builtin_isinf(x) #endif #endif /* included_math_h */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */