branch: master
commit 90710b139b3119f78ecf403648a78ba5a03cb524
Author: Ileana Dumitrescu <ileanadumitresc...@gmail.com>
AuthorDate: Sat May 11 10:52:47 2024 +0300

    libtool: Minor syntax and typo fixes
    
    doc/notes.texi: Duplicate "to" removed.
    build-aux/ltmain.in: Useless parentheses in cpp directive removed.
---
 build-aux/ltmain.in | 2 +-
 doc/notes.texi      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/ltmain.in b/build-aux/ltmain.in
index ff0f8758..7e096a1a 100644
--- a/build-aux/ltmain.in
+++ b/build-aux/ltmain.in
@@ -3638,7 +3638,7 @@ EOF
 #endif
 #include <stdio.h>
 #include <stdlib.h>
-#if defined (_WIN32) && !defined (__GNUC__)
+#if defined _WIN32 && !defined __GNUC__
 # include <direct.h>
 # include <process.h>
 # include <io.h>
diff --git a/doc/notes.texi b/doc/notes.texi
index a6cd1b90..606c957b 100644
--- a/doc/notes.texi
+++ b/doc/notes.texi
@@ -29,7 +29,7 @@ will generate the instantiations.  For Portland pgCC 
version5, use
 @item
 For C++ code, it may be neccesary to specify a library if it is a dependency
 of a link/compile flag. For example in GNU G++, if you want to use
-@code{-fsanitize=address} you need to to specify the @code{-lasan} library,
+@code{-fsanitize=address} you need to specify the @code{-lasan} library,
 like so: @code{g++ -o libx.la -fsanitize=address -lasan -rpath [...]}.
 
 @item

Reply via email to